about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile index 168fac8..87e730d 100644 --- a/Makefile +++ b/Makefile
@@ -7,7 +7,6 @@ SITE_TITLE = acdw.casa
7 7
8INPUT = src 8INPUT = src
9BUILD = build 9BUILD = build
10LASTB = .last_build
11 10
12HTAWK = ./ht.awk 11HTAWK = ./ht.awk
13HTSH = ./ht.sh 12HTSH = ./ht.sh
@@ -54,12 +53,11 @@ RSYNCEXCLUDE = \
54 "*.bod.txt" \ 53 "*.bod.txt" \
55 "tmp/" 54 "tmp/"
56RSYNCEXCLUDEFILE = ${BUILD}/.rsync-exclude 55RSYNCEXCLUDEFILE = ${BUILD}/.rsync-exclude
57RSYNC = rsync -avz --exclude-from="${RSYNCEXCLUDEFILE}" --delete 56RSYNC = rsync -auvz --exclude-from="${RSYNCEXCLUDEFILE}" --delete
58 57
59#################### 58####################
60 59
61${BUILD}: ${BUILD_INPUTS} 60${BUILD}: ${BUILD_INPUTS}
62 @touch ${LASTB}
63 @mkdir -p ${BUILD} 61 @mkdir -p ${BUILD}
64 cp -a ${BUILD_INPUTS} $@ 62 cp -a ${BUILD_INPUTS} $@
65 ${MAKE} -C $@ -f ${HTMK} build 63 ${MAKE} -C $@ -f ${HTMK} build
@@ -85,7 +83,7 @@ ${PTMPL}: ; printf '${PTMPC}' > '$@'
85${ITMPL}: ; printf '${ITMPC}' > '$@' 83${ITMPL}: ; printf '${ITMPC}' > '$@'
86 84
87.PHONY: clean clean-build nuke 85.PHONY: clean clean-build nuke
88clean: ; -rm -rf ${BUILD} ${HTMK} $T ${LASTB} 86clean: ; -rm -rf ${BUILD} ${HTMK} $T
89nuke: clean ; -rm ${TMPL} 87nuke: clean ; -rm ${TMPL}
90 88
91${RSYNCEXCLUDEFILE}: ${BUILD} 89${RSYNCEXCLUDEFILE}: ${BUILD}