view contrib/hgsh/Makefile @ 5283:4fe04b183fd8

Forgot to quote "6^" in test-parentrevspec (see 94e77a174f55)
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 04 Sep 2007 18:37:28 +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