contrib/hgsh/Makefile
author Pierre-Yves David <pierre-yves.david@fb.com>
Sun, 10 May 2015 05:11:13 -0700
changeset 25128 631766d1f57a
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
getbundle: sort bundlecaps before exchanging then over the wire The 'bundlecaps' argument is built as a set, we need to stabilise the order before exchanging them. Otherwise, in the test, http logs are unstable when the 'bundlecaps' contains something (eg: using bundle2).

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