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 /Bachelor/Softwaretechnik2/code/makefile | |
| download | Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2 | |
Diffstat (limited to 'Bachelor/Softwaretechnik2/code/makefile')
| -rw-r--r-- | Bachelor/Softwaretechnik2/code/makefile | 17 |
1 files changed, 17 insertions, 0 deletions
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
|
