contrib/hgsh/Makefile
author Pierre-Yves DAVID <pierre-yves.david@octobus.net>
Sat, 04 Jun 2022 19:04:01 +0200
changeset 49484 ebbaf6a77807
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
compare-disco: add an option to skip the case If we already know the context, we can save a lot of display space by skipping the case. This also open the way to speedup to the way we specify the subsets. (the code is hacky, but this is a quicky and dirty debug script)

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