Mercurial > hg
view contrib/hgsh/Makefile @ 3239:7a3edd3f7c3e
Install all files/subdirectories below templates.
This is needed because styles are now in their own subdirectory.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Tue, 03 Oct 2006 11:53:35 +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