view contrib/hgsh/Makefile @ 13194:b549ee324aef

test-doctest: test url.py again, removed by 7cc4263e07a9
author Patrick Mezard <pmezard@gmail.com>
date Tue, 28 Dec 2010 14:53:08 +0100
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