contrib/hgsh/Makefile
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sun, 30 May 2021 18:10:15 +0200
changeset 47401 1efe3cdef53a
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
revlog: add a ways to blacklist some revision when searching for a delta This will be useful to recompute appropriate deltas one the fly during censor/strip operation with revlog-v2. Differential Revision: https://phab.mercurial-scm.org/D10799

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