contrib/hgsh/Makefile
author Patrick Mezard <pmezard@gmail.com>
Fri, 05 Oct 2007 22:39:36 +0200
changeset 5393 c2ad1890fc53
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
hgk: add debug-config command to pass configuration options

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