view contrib/hgsh/Makefile @ 13381:d073468e3c5f

bookmarks: read current bookmark as utf-8 and convert it to local
author David Soria Parra <dsp@php.net>
date Fri, 11 Feb 2011 19:32:49 +0100
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