contrib/hgsh/Makefile
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Mon, 26 Mar 2007 23:49:58 -0300
changeset 4286 949516072388
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
test-hook: use printenv.py

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