view contrib/hgsh/Makefile @ 39408:c7f213d7f4d2

py3: add new passing test to whitelist found by buildbot Differential Revision: https://phab.mercurial-scm.org/D4451
author Pulkit Goyal <pulkit@yandex-team.ru>
date Mon, 03 Sep 2018 13:56:53 +0300
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