contrib/hgsh/Makefile
author Brodie Rao <brodie@bitheap.org>
Wed, 30 Mar 2011 20:01:31 -0700
changeset 13817 7f18bab2c0b0
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
url: abort on file:// URLs with non-localhost hosts

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