view contrib/hgsh/Makefile @ 12217:11ab9982d249 stable

i18n-it: general updates fuzzy synopsis texts This patch follows the fix on the translation of [OPTION]... with other needed updates on the same class of messages.
author Paolo Giarrusso <p.giarrusso@gmail.com>
date Sat, 21 Aug 2010 00:33:13 +0200
parents dbbe7f72d15a
children
line wrap: on
line source

CC := gcc
CFLAGS := -g -O2 -Wall -Werror

prefix ?= /usr/bin

hgsh: hgsh.o
	$(CC) -o $@ $<

install: hgsh
	install -m755 hgsh $(prefix)

clean:
	rm -f *.o hgsh