From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile (limited to 'Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile') 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 -- cgit v1.2.3