view contrib/hgsh/Makefile @ 16040:c0b2986b37b8 stable

mq: fix secret description in help
author Matt Mackall <mpm@selenic.com>
date Mon, 30 Jan 2012 16:04:14 -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