contrib/hgsh/Makefile
author Yuya Nishihara <yuya@tcha.org>
Sun, 27 Sep 2015 22:19:54 +0900
changeset 26398 70abba798098
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
check-seclevel: wrap entry point by function This is intended to narrow scope of local variables. The global _verbose flag will be replaced later by ui.verbose.

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