contrib/hgsh/Makefile
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
Mon, 22 Aug 2016 14:44:14 +0200
changeset 29906 a77d48219edd
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
update: label bookmark name in message We label bookmark name as such in various messages. This will help them to standout (or at least give the user the option to make them stand out). We use a distinct label for the 'active' bookmark, this can help users to catch bookmark operation affecting their working copy.

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