12 lines
172 B
Makefile
12 lines
172 B
Makefile
|
SRCDIR := ./src/
|
||
|
|
||
|
include Targets
|
||
|
|
||
|
all: $(TARGETS)
|
||
|
|
||
|
$(TARGETS):
|
||
|
- mkdir build
|
||
|
latex --output-format=pdf --output-directory=build/ $(SRCDIR)/$@.tex
|
||
|
|
||
|
clean:
|
||
|
- rm -rf build
|