view contrib/hgsh/Makefile @ 12785:c7d23b4ca4ba

check-code: warning and fixes for whitespace in unified tests
author Matt Mackall <mpm@selenic.com>
date Wed, 20 Oct 2010 14:57:36 -0500
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