view contrib/hgsh/Makefile @ 10858:2200d8464fbb stable

i18n-da: small updates
author Martin Geisler <mg@lazybytes.net>
date Mon, 05 Apr 2010 01:10:09 +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