contrib/hgsh/Makefile
author Augie Fackler <augie@google.com>
Sun, 19 Feb 2017 15:09:41 -0500
changeset 31028 3c22ad83868b
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
annotate: start pager after we're sure we wont abort This avoids needlessly putting a short error message into the pager.

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