view contrib/hgsh/Makefile @ 16742:973671fc0804

bookmarks: test that bare update forwards active bookmark
author Kevin Bullock <kbullock@ringworld.org>
date Sat, 05 May 2012 15:12:26 -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