view contrib/hgsh/Makefile @ 16388:e03d8a40521f

repair: allow giving strip backup a different name So the user can differentiate amend backups from the rest.
author Idan Kamara <idankk86@gmail.com>
date Fri, 06 Apr 2012 16:18:33 +0300
parents dbbe7f72d15a
children
line wrap: on
line source

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