diff options
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,8 @@ pages = $(wildcard *.html) sheets = $(wildcard *.css) -targets = $(foreach f,$(pages) $(sheets),public/$(f)) +images = $(wildcard *.svg) +resources = $(pages) $(sheets) $(images) +targets = $(foreach f,$(resources),public/$(f)) .PHONY: all clean site |
