contrib/hgsh/Makefile
author Matt Mackall <mpm@selenic.com>
Sun, 10 Aug 2008 22:55:00 -0500
changeset 6880 892806b3fc0f
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
util: disinfect lookup_reg strings (issue1126) lookup_reg could return Unicode strings, which would infect other strings and generate unexpected tracebacks. Spotted by Rémy Roy. Fold in silly nested function while we're at it.

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