Mercurial > hg
view contrib/hgsh/Makefile @ 12710:e23895aea892
doc: add [format] dotencode description
author | Adrian Buehlmann <adrian@cadifra.com> |
---|---|
date | Sun, 10 Oct 2010 23:32:09 +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