Mercurial > hg
view contrib/hgsh/Makefile @ 11789:e2bce1c717fa
strip: support multiple revisions
author | Nicolas Dumazet <nicdumz.commits@gmail.com> |
---|---|
date | Sat, 17 Jul 2010 00:47:06 +0900 |
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