contrib/hgsh/Makefile
author Patrick Mezard <pmezard@gmail.com>
Sat, 11 Jun 2011 14:40:25 +0200
changeset 14567 b72cef1b8b26
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
tests: rename test-git-import.t into test-import-git.t This is consistent with other test-import* tests.

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