view contrib/hgsh/Makefile @ 5296:c8efd19e248c

Document pseudo-tags "null" and ".".
author Brendan Cully <brendan@kublai.com>
date Tue, 11 Sep 2007 13:23:59 -0700
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