diff options
Diffstat (limited to 'Bachelor/Softwaretechnik2/mixer/makefile')
| -rw-r--r-- | Bachelor/Softwaretechnik2/mixer/makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik2/mixer/makefile b/Bachelor/Softwaretechnik2/mixer/makefile new file mode 100644 index 0000000..4102c62 --- /dev/null +++ b/Bachelor/Softwaretechnik2/mixer/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 |
