view contrib/hgsh/Makefile @ 34297:7f02fb920121

tests: clean up blackbox test around aliases a little bit
author Augie Fackler <augie@google.com>
date Mon, 11 Sep 2017 20:06:52 -0400
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