contrib/hgsh/Makefile
author Brendan Cully <brendan@kublai.com>
Wed, 11 Jul 2007 00:34:35 -0700
changeset 4865 76d4d031cc50
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
handle nonexistent .hgtags in raw _tag

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