view contrib/hgsh/Makefile @ 19712:79e5de2bfa8c

perfmanifest: allow and require passing in a rev Previously perfmanifest would only test tip.
author Siddharth Agarwal <sid0@fb.com>
date Fri, 06 Sep 2013 13:35:29 -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