contrib/hgsh/Makefile
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Mon, 20 Nov 2006 19:32:35 -0200
changeset 3693 454b3a8cdf28
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
diff: improve detection of renames when diffing across many revisions

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