view contrib/hgsh/Makefile @ 3453:6e998a4575c6

Show extra changeset info for log/tip/heads/... --debug
author Thomas Arendsen Hein <thomas@intevation.de>
date Wed, 18 Oct 2006 11:55:32 +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