Mercurial > hg
view contrib/hgsh/Makefile @ 2458:9dd93deef3c9
change log message creation when using 'hg import'
if found cmdline is used
else if found patch header is used
else launch hgeditor
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sun, 18 Jun 2006 19:10:48 +0200 |
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