contrib/hgsh/Makefile
author Matt Mackall <mpm@selenic.com>
Mon, 08 Oct 2007 18:47:15 -0500
changeset 5424 005638db9d0c
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
osutil: fold stat paths together - simplify st/py_st logic - use stp to point to stat buffer - combine stat paths

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