contrib/hgsh/Makefile
author Edouard Gomez <ed.gomez@free.fr>
Thu, 14 Jun 2007 23:25:55 +0200
changeset 4588 9855939d0c82
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
convert extension: Save a few opens on the map file Save a few opens on the map file adding a class attribute

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