diff options
-rw-r--r-- | Makefile | 7 | ||||
-rw-r--r-- | config.mk | 1 |
2 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,6 @@ +include config.mk + BASEHREF = file:///var/home/alessandro/devel/aiezzi/website/ -CC = hyde DEST = ~/www/alessandroiezzi.it .SUFFIXES: .rhtml .html .tmpl .trhtml .rhtml.config @@ -32,7 +33,7 @@ clean: rm -f ip.php .rhtml.html: navigation.rhtml.inc master.rhtml - ${CC} -b ${BASEHREF} -f $< > $@ + ${HYDE} -b ${BASEHREF} -f $< > $@ ip.php: ip.rhtml.php - ${CC} -b ${BASEHREF} -f $< > $@ + ${HYDE} -b ${BASEHREF} -f $< > $@ diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..690dcc0 --- /dev/null +++ b/config.mk @@ -0,0 +1 @@ +HYDE = hyde |