summaryrefslogtreecommitdiffstats
path: root/Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile
diff options
context:
space:
mode:
authorSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
committerSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
commit33613a85afc4b1481367fbe92a17ee59c240250b (patch)
tree670b842326116b376b505ec2263878912fca97e2 /Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile
downloadStudium-master.tar.gz
Studium-master.tar.bz2
add new repoHEADmaster
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