contrib/hgsh/Makefile
author Laurent Charignon <lcharignon@fb.com>
Thu, 21 May 2015 14:34:24 -0700
changeset 25259 5b05f10c5024
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
revert: fix edition of newly added file during --interactive Before this patch: editing hunks of newly added file when performing a revert --interactive had no effect: the edits were discarded. After this patch, the edits are taken into account.

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