contrib/hgsh/Makefile
author Pierre-Yves David <pierre-yves.david@fb.com>
Sun, 12 Oct 2014 08:03:20 -0700
changeset 22940 e803186296ab
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
phases: inform transaction-related hooks that a phase was moved We do not have enough information to provide finer data, but this is still useful information.

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