view contrib/hgsh/Makefile @ 36245:c6ce479f7a28

templater: add function to help substituting patterns in template string This will be used to rewrite a filename pattern to a template string.
author Yuya Nishihara <yuya@tcha.org>
date Sun, 07 Jan 2018 11:21:25 +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