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 --- Bachelor/Softwaretechnik2/code/makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Bachelor/Softwaretechnik2/code/makefile (limited to 'Bachelor/Softwaretechnik2/code/makefile') diff --git a/Bachelor/Softwaretechnik2/code/makefile b/Bachelor/Softwaretechnik2/code/makefile new file mode 100644 index 0000000..c3ee00f --- /dev/null +++ b/Bachelor/Softwaretechnik2/code/makefile @@ -0,0 +1,17 @@ +all: + g++ -O3 -c -o CDisplay.o CDisplay.cpp + g++ -O3 -c -o CRezept.o CRezept.cpp + g++ -O3 -c -o CRezeptProcessor.o CRezeptProcessor.cpp + g++ -O3 -c -o CRezeptSchritt.o CRezeptSchritt.cpp + g++ -O3 -c -o CDosierer.o CDosierer.cpp + g++ -O3 -c -o CGeraet.o CGeraet.cpp + g++ -O3 -c -o CVentilGeraet.o CVentilGeraet.cpp + g++ -O3 -c -o CSubjekt.o CSubjekt.cpp + g++ -O3 -c -o CObserver.o CObserver.cpp + g++ -O3 -c -o CWaage.o CWaage.cpp + g++ -O3 -c -o CMischer.o CMischer.cpp + g++ -O3 -c -o CStampfer.o CStampfer.cpp + g++ -O3 -c -o CEntleerer.o CEntleerer.cpp + g++ -O3 -c -o main.o main.cpp + + g++ -O3 -o mixer *.o -- cgit v1.2.3