view contrib/hgsh/Makefile @ 2680:d071a9cc2f94

added documentation for to, cc, and bcc addressing
author Christian Ebert <blacktrash@gmx.net>
date Wed, 26 Jul 2006 14:42:17 +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