contrib/hgsh/Makefile
author Yuya Nishihara <yuya@tcha.org>
Sat, 15 Dec 2018 17:52:14 +0900
changeset 40992 1de3364320af
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
tests: filter out uninteresting log events This helps adding more log()s without updating the 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