view contrib/hgsh/Makefile @ 9460:552c5a5a3502

contrib/bash_completion: add tab completion for some bookmark commands
author Steve Losh <steve@stevelosh.com>
date Thu, 17 Sep 2009 22:30:45 -0400
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