19 lines
387 B
Makefile
19 lines
387 B
Makefile
SRC=src/index.md
|
|
STYLE=src/style.css
|
|
STYLE_MIN=src/style.min.css
|
|
TARGET=index.html
|
|
TARGET_REMOTE=adrastee:/var/www/index.html
|
|
|
|
all: $(TARGET)
|
|
|
|
publish: $(TARGET)
|
|
rsync $(TARGET) -vzc $(TARGET_REMOTE)
|
|
|
|
$(TARGET): $(SRC) $(STYLE_MIN)
|
|
pandoc --embed-resources -s -t html5 "$(SRC)" --css "$(STYLE_MIN)" -o "$@"
|
|
|
|
$(STYLE_MIN) : $(STYLE)
|
|
minify "$(STYLE)" > "$(STYLE_MIN)"
|
|
|
|
.PHONY: publish
|