Mercurial > hg-stable
view contrib/hgsh/Makefile @ 12603:f1646efc54a6
tests: unify test-casefolding
author | Brodie Rao <brodie@bitheap.org> |
---|---|
date | Mon, 27 Sep 2010 13:13:34 -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