contrib/hgsh/Makefile
author Matt Mackall <mpm@selenic.com>
Tue, 08 Aug 2006 10:35:19 -0500
changeset 2828 0f787997e3c2
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
Merge: move most tests to the beginning

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