view contrib/hgsh/Makefile @ 12085:6f833fc3ccab

Consistently import foo as foomod when foo to avoid shadowing This is in the style of 5f091fc1bab7.
author Martin Geisler <mg@aragost.com>
date Mon, 30 Aug 2010 14:38:24 +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