$(BUILD_DIR)/index.html: $(SRC_DIR)/index.md $(BUILD_DIR)/$(ASSETS_DIR)
@pandoc --defaults=./defaults/md-to-html-index.yml --output=$@ $<
@echo "Building $@ from $<..."
+
+# Note: This is identical to the index rule, but I can't use a wildcard
+# to express both because the target would look identical to the standard
+# build rule. We might be able to merge them all.
+$(BUILD_DIR)/about.html: $(SRC_DIR)/about.md $(BUILD_DIR)/$(ASSETS_DIR)
+ @pandoc --defaults=./defaults/md-to-html-index.yml --output=$@ $<
+ @echo "Building $@ from $<..."
.buildlist:
@echo $(BUILD_LIST) | tr ' ' '\n' > .buildlist
@echo $(BUILD_DIR)/index.html >> .buildlist
+ @echo $(BUILD_DIR)/about.html >> .buildlist
$(BUILD_DIR)/$(ASSETS_DIR): $(SRC_DIR)/$(ASSETS_DIR)
mkdir -p $(BUILD_DIR)/$(ASSETS_DIR)