contrib/hgsh/Makefile
author Steve Borho <steve@borho.org>
Thu, 30 Jun 2011 12:55:19 -0500
branchstable
changeset 14819 b30c889584ef
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
wix: catch up with more added files revsets: 1.7::tip and adds("mercurial/help/**") 1.7::tip and adds("mercurial/templates/**")

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