view contrib/hgsh/Makefile @ 13467:31aa2e5b0750 stable

export: only close files which export itself has opened
author Waqas Hussain <waqas20@gmail.com>
date Wed, 23 Feb 2011 13:21:55 +0500
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