view contrib/hgsh/Makefile @ 8592:cc22b4168879

runtest: do not start testing when there is no test
author Simon Heimberg <simohe@besonet.ch>
date Tue, 19 May 2009 09:36:20 +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