contrib/hgsh/Makefile
author Steve Borho <steve@borho.org>
Mon, 09 Mar 2009 21:00:37 -0500
changeset 7861 2bc14da14992
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
demandimport: blacklist pythoncom win32com.shell would segfault at import time if pythoncom was demand loaded.

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