uibk_703602-Compiler-Constr.../slides/Makefile

15 lines
256 B
Makefile
Raw Permalink Normal View History

2019-03-06 15:55:44 +01:00
SRC = $(wildcard *.md)
HTML = $(SRC:.md=.html)
.PHONY: all clean
all: $(HTML)
clean:
$(RM) $(HTML)
WD := $(realpath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
# uses https://github.com/W4RH4WK/Dogx
include $(HOME)/git/dogx/template/settings.mk