contrib/hgsh/Makefile
author Pierre-Yves David <pierre-yves.david@fb.com>
Fri, 06 Feb 2015 17:41:24 +0000
changeset 25404 ff955e7b1085
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
bundle2: use bundle2 by default All the test change have been isolated and validated. We have free to turn on bundle2 as the default exchange protocol. "To reach a port we must set sail – Sail, not tie at anchor Sail, not drift."

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