summaryrefslogtreecommitdiffstats
path: root/Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile')
-rw-r--r--Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile b/Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile
new file mode 100644
index 0000000..befc7ef
--- /dev/null
+++ b/Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile
@@ -0,0 +1,6 @@
+all:
+ mkdir build
+ g++ -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"build/MLP.d" -MT"build/MLP.d" -o"build/MLP.o" "src/MLP.cpp"
+ g++ -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"build/MLPConfig.d" -MT"build/MLPConfig.d" -o"build/MLPConfig.o" "src/MLPConfig.cpp"
+ g++ -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"build/main.d" -MT"build/main.d" -o"build/main.o" "src/main.cpp"
+ g++ -o"./build/MLP" ./build/MLP.o ./build/MLPConfig.o ./build/main.o -lboost_program_options