view contrib/hgsh/Makefile @ 50717:41b9eb302d95 stable

Added signature for changeset 271a4ab29605
author Raphaël Gomès <rgomes@octobus.net>
date Thu, 22 Jun 2023 11:18:47 +0200
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