view contrib/hgsh/Makefile @ 3735:205f0fd4a4a1

Add missing test output
author Matt Mackall <mpm@selenic.com>
date Thu, 30 Nov 2006 19:50:28 -0600
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