contrib/hgsh/Makefile
author Brendan Cully <brendan@kublai.com>
Fri, 13 Oct 2006 09:58:55 -0700
changeset 3383 c7c6f1a45348
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
Test case for log --copies on non-linear manifests (issue391)

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