contrib/hgsh/Makefile
author Martin Geisler <mg@lazybytes.net>
Thu, 09 Apr 2009 20:00:48 +0200
changeset 8040 545fb915fe16
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
commands: more informative description of "!" files in status This makes the description more similar to the one used by Subversion. Suggestion by Dennis Brakhane.

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