contrib/hgsh/Makefile
author Pierre-Yves David <pierre-yves.david@fb.com>
Thu, 27 Feb 2014 20:01:28 -0800
changeset 20599 dad29624b056
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
obsolete: extract encoding of marker for pushkey from the list key function We now have a function taking a list and marker and returning an encoded version. This will allow obsolescence marker exchange experimentation to easily pushkey-encode markers to be pushed after selection.

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