contrib/hgsh/Makefile
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 18 Nov 2019 09:38:40 +0100
branchstable
changeset 44252 5fd43c788943
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
heptapod-ci: also run the dedicated rust test for the rust code The Rust code has various standard rust test that are fast to run. So let's run them. Differential Revision: https://phab.mercurial-scm.org/D8014

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