masters-thesis/scripts/Makefile
Dennis af25b4b828 Initial commit of master's thesis
This is the version I submitted to RWTH Aachen University at November 9,
2018.
2018-11-12 12:56:59 +01:00

18 lines
305 B
Makefile

BUILDDIR = build
SRCS = ib_verbs.py rdma_cm_verbs.py nodetype_functions.py
TEXS = $(patsubst %.py, $(BUILDDIR)/%.tex, $(SRCS))
all: ${BUILDDIR} $(TEXS)
$(BUILDDIR)/%.tex: %.py dict_to_table.py
./$<
mv $*.tex $(BUILDDIR)
${BUILDDIR}:
mkdir -p ${BUILDDIR}
clean:
rm -rf $(BUILDDIR)
.PHONY: clean