From e3f78119f540b1b94d538d974d3dcca321591f33 Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Tue, 30 Aug 2016 22:36:00 -0400 Subject: [PATCH] Update index.html to generate to site/ --- Makefile | 5 ++++- index.html | 2 +- site/index.html | 12 ++++++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 site/index.html diff --git a/Makefile b/Makefile index 2878de1..bdfd8df 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,14 @@ PATH := $(PWD)/tools:$(PATH) PAGES = $(addprefix site/,$(addsuffix .html,$(basename $(notdir $(wildcard pages/*.md))))) .PHONY: serve -all: $(PAGES) +all: $(PAGES) site/index.html serve: tools/serve +site/index.html: index.html + cp $^ $@ + site/%.html : pages/%.md genpage $< > $@ diff --git a/index.html b/index.html index c1c7be8..c26daa8 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,7 @@ diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..c26daa8 --- /dev/null +++ b/site/index.html @@ -0,0 +1,12 @@ + + + + + + + + + + -- 2.52.0