view contrib/hgsh/Makefile @ 2978:4e815ee377fd

Make test-strict append to $HGRCPATH, like other tests do since 61fcd9fac434.
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 22 Aug 2006 10:20:21 +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