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:
17
scripts/Makefile
Normal file
17
scripts/Makefile
Normal 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
|
Reference in New Issue
Block a user