view contrib/hgsh/Makefile @ 16228:5b41d5ad52bf stable

rebase: move bookmarks as needed with pull --rebase (issue3285)
author Matt Mackall <mpm@selenic.com>
date Sun, 04 Mar 2012 17:12:12 -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