diff options
| author | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
|---|---|---|
| committer | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
| commit | 33613a85afc4b1481367fbe92a17ee59c240250b (patch) | |
| tree | 670b842326116b376b505ec2263878912fca97e2 /Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile | |
| download | Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2 | |
Diffstat (limited to 'Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile')
| -rw-r--r-- | Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile | 6 |
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 |
