contrib/hgsh/Makefile
author Bryan O'Sullivan <bos@serpentine.com>
Wed, 01 Aug 2007 09:57:05 -0700
changeset 5041 49059086c634
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
localrepository: allow rawcommit to commit with an empty message

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