view contrib/hgsh/Makefile @ 21212:b7fc9c6df13c stable

i18n-ja: synchronized with e9c2f76be74b
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Wed, 30 Apr 2014 23:20:46 +0900
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