contrib/hgsh/Makefile
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Sun, 22 Oct 2006 01:02:13 -0300
changeset 3481 f699d4eb25d9
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
bash_completion: qguard

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