view contrib/hgsh/Makefile @ 7969:a969b1470987

convert: simple fix for non-existent synthetic/mergepoint attributes
author Rocco Rutte <pdmef@gmx.net>
date Sat, 04 Apr 2009 18:08:41 +0200
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