view contrib/hgsh/Makefile @ 17637:02d2166ef5f1

templater: pull in functions defined in templatefilters
author Matt Mackall <mpm@selenic.com>
date Mon, 24 Sep 2012 15:28:04 -0500
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