Initial commit of master's thesis

This is the version I submitted to RWTH Aachen University at November 9,
2018.
This commit is contained in:
2018-11-12 12:56:59 +01:00
parent ffbcce77f9
commit af25b4b828
1136 changed files with 127398252 additions and 2 deletions

17
scripts/Makefile Normal file
View File

@@ -0,0 +1,17 @@
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