contrib/hgsh/Makefile
author Bryan O'Sullivan <bryano@fb.com>
Mon, 01 Apr 2013 13:46:32 -0700
changeset 18845 c1f416e4bc80
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
perf: add perfdirs command This measures the cost of computing the dirstate's dirs structure, which becomes very expensive in a large working directory.

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