view contrib/hgsh/Makefile @ 6050:adf73753eb7d

keyword: fix pychecker warning about shadowed variable Also no underscore prefix for restricted switch inside reposetup.
author Christian Ebert <blacktrash@gmx.net>
date Thu, 07 Feb 2008 15:56:20 +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