contrib/hgsh/Makefile
author Mads Kiilerich <mads@kiilerich.com>
Fri, 13 Jan 2012 02:29:38 +0100
changeset 15886 a5917346c72e
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
localrepo: update branchcache in a more reliable way test-mq-cache.t did apparently look at stale cache content. Testing with different locking mechanism happened to update the cache more frequently and thus caused a test failure.

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