view contrib/hgsh/Makefile @ 22570:db497a1ef1c1

test-commandserver: remove redundant banner output Since test output was inlined, "testing <func>" message should no longer be necessary.
author Yuya Nishihara <yuya@tcha.org>
date Sun, 28 Sep 2014 16:59:30 +0900
parents dbbe7f72d15a
children
line wrap: on
line source

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