view contrib/hgsh/Makefile @ 15930:2dc599583ebe

largefiles: test and simplify empty directory removal in remove
author Patrick Mezard <pmezard@gmail.com>
date Thu, 19 Jan 2012 10:07:13 +0100
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