summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-09-25 13:54:19 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-09-25 13:54:19 (EDT)
commit1118cf361a8e065958726971f115fa586deea720 (patch)
treeec8825daf8a0ab4a2dc2cb62a8cb3fe203940c68
parentdbf610ed51de1991e34f31228f489c55672c13e2 (diff)
downloadwww-1118cf361a8e065958726971f115fa586deea720.zip
www-1118cf361a8e065958726971f115fa586deea720.tar.gz
www-1118cf361a8e065958726971f115fa586deea720.tar.bz2
Makefile: Add prerequisites to objects.
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c5f6f85..f4b632f 100644
--- a/Makefile
+++ b/Makefile
@@ -8,10 +8,12 @@ objs = $(srcs:.mdwn=.html)
.SUFFIXES:
.SUFFIXES: .mdwn .html
+all: $(objs)
+
+$(objs): Makefile includes/header.html includes/footer.html
+
.mdwn.html:
markdown $< | ssic -o $@ $(SSIFLAGS) -
-all: $(objs)
-
clean:
rm -f $(objs)