contrib/hgsh/Makefile
author Brendan Cully <brendan@kublai.com>
Tue, 19 Aug 2008 15:36:03 -0700
changeset 6909 b5a6fce0bc29
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
Use relative imports in inotify.server. Fixes an import failure I was getting under hgtk and hgweb: *** failed to import extension inotify: 'module' object has no attribute 'inotify'

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