contrib/hgsh/Makefile
author Yuya Nishihara <yuya@tcha.org>
Sun, 18 Mar 2018 17:02:39 +0900
changeset 37230 a0b17f744cbc
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
keyword: declare input type of date filters as date Dropped redundant dateutil.parsedate(), which is now handled by the templater.

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