contrib/hgsh/Makefile
author Boris Feld <boris.feld@octobus.net>
Mon, 23 Jul 2018 16:21:58 +0200
changeset 39189 b3b4bee161cf
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
revlog: ensure intermediate snapshot have decreasing size If the intermediate snapshot is bigger than the previous one, there is likely a better snapshot to be made at a different level.

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