diff options
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
|
