22 lines
1.5 KiB
Text
22 lines
1.5 KiB
Text
make --dry-run --always-make --keep-going --print-directory
|
|
make: Entering directory '/home/rafayahmad/Stuff/OOP/Project'
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o util.o util.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o game.o game.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o Ball.o Ball.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o Paddle.o Paddle.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o Brick.o Brick.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o GameLevel.o GameLevel.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o Level1.o Level1.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o Level2.o Level2.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o Level3.o Level3.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o Food.o Food.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o PinkFood.o PinkFood.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o GreenFood.o GreenFood.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o RedFood.o RedFood.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o BlueFood.o BlueFood.cpp
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o YellowFood.o YellowFood.cpp
|
|
|
|
g++ -g3 -Wall -fmessage-length=0 -c -o BrickBreaker.o BrickBreaker.cpp
|
|
g++ -o game util.o game.o Ball.o Paddle.o Brick.o GameLevel.o Level1.o Level2.o Level3.o Food.o PinkFood.o GreenFood.o RedFood.o BlueFood.o YellowFood.o BrickBreaker.o -L/usr/X11R6/lib -L/sw/lib -L/usr/sww/lib -L/usr/sww/bin -L/usr/sww/pkg/Mesa/lib -lglut -lGLU -lGL -lX11 -lfreeimage -pthread
|
|
make: Leaving directory '/home/rafayahmad/Stuff/OOP/Project'
|
|
|