summaryrefslogtreecommitdiffstats
path: root/Master/Modellbildung_und_Simulation/Aufgabenblatt3/MLP/Makefile
blob: befc7ef04bcaa6b95100cbd4d59664699049b7b7 (plain)
1
2
3
4
5
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