contrib/hgsh/Makefile
author Yuya Nishihara <yuya@tcha.org>
Sat, 13 Jun 2015 20:23:52 +0900
changeset 25598 55c2cb65bdfa
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
templater: drop strtoken argument from compiletemplate() There's no "rawstring" template now.

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