Mercurial > hg
view contrib/hgsh/Makefile @ 7554:11a4eb81fb4f 1.1.2
test-audit-path: add more tests (issue 1450)
author | Peter Arrenbrecht <peter.arrenbrecht@gmail.com> |
---|---|
date | Tue, 30 Dec 2008 22:10:41 +0100 |
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