added more makefiles

This commit is contained in:
Sheppy 2017-03-29 14:44:20 +02:00
parent e6ffe7ca2e
commit 43376c7e1d
3 changed files with 14 additions and 0 deletions

0
AuD/Makefile Normal file → Executable file
View File

7
IDB/Makefile Normal file
View File

@ -0,0 +1,7 @@
SUBDIRS := idb_skript_greeny klausur_ss16 klausur_ws1516
all: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
.PHONY: all $(SUBDIRS)

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
SUBDIRS := AuD GTI IDB KonzMod MatheC1 MatheC4 RK ThProg
all: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -j 10 -C $@
.PHONY: all $(SUBDIRS)