contrib/hgsh/Makefile
author Vadim Gelfer <vadim.gelfer@gmail.com>
Sat, 29 Jul 2006 11:05:39 -0700
changeset 2728 5d134f04060f
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
mq: allow to apply patches in subdir of repo again i broke it in 35caf437a201.

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