view contrib/hgsh/Makefile @ 16770:b3435385f99f

clone: add progress calls to uncompressed code path
author Augie Fackler <raf@durin42.com>
date Mon, 21 May 2012 14:25:46 -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