view contrib/hgsh/Makefile @ 7043:b714aac1f7b3

tests: add test for notify extension as changegroup hook
author Dennis Schoen <ds@1d10t.de>
date Thu, 18 Sep 2008 13:55:58 +0200
parents dbbe7f72d15a
children
line wrap: on
line source

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