contrib/hgsh/Makefile
author Mads Kiilerich <mads@kiilerich.com>
Tue, 08 Jan 2013 04:15:41 +0100
changeset 18256 d084df89d948
parent 2341 dbbe7f72d15a
permissions -rw-r--r--
merge: make internal merge fail cleanly on symlinks Simplemerge is not symlink aware and will never do the the right thing on symlinks. It would read the symlink as a file and abort with 'No such file or directory' on dangling symlinks. Instead, internal:merge now simply fails to merge symlinks.

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