Skip to content

Instantly share code, notes, and snippets.

@davidgomes
Created August 30, 2012 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidgomes/174da34847370dd689eb to your computer and use it in GitHub Desktop.
Save davidgomes/174da34847370dd689eb to your computer and use it in GitHub Desktop.
all:
@echo "** Building Explosonoid"
mahgame : Game.o State.o PlayState.o Object.o Player.o
g++ -o mahgame Game.o State.o PlayState.o Object.o Player.o $(LIBS)
State.o : State.cpp
g++ -c State.cpp
PlayState.o : PlayState.cpp
g++ -c PlayState.cpp
Game.o : Game.cpp
g++ -c Game.cpp
Object.o : Object.cpp
g++ -c Object.cpp
Player.o : Player.cpp
g++ -c Player.cpp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment