view contrib/hgsh/Makefile @ 6231:5e5ce714ba95

merge with main
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 11 Mar 2008 23:59:43 +0100
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