contrib/hgsh/Makefile
author Thomas Arendsen Hein <thomas@intevation.de>
Fri, 01 Dec 2006 23:28:14 +0100
changeset 3756 2f2b59fcb394
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
merge with crew

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