diff options
author | Luke Bratch <l_bratch@yahoo.co.uk> | 2010-12-18 00:38:21 +0000 |
---|---|---|
committer | Luke Bratch <l_bratch@yahoo.co.uk> | 2010-12-18 00:38:21 +0000 |
commit | 285fd3007e27e786b38a7b82ad9def089a411b85 (patch) | |
tree | 8861925390d83e912f903bcd435d322bf871ba34 | |
parent | 36f5cd0d0fbbf33b47af92cb51a4b78a217a54c1 (diff) |
Add a Makefile
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8a8bb8d --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +CC = g++ + +intensemarcus: + $(CC) -lSDL -lSDL_image main.cpp intensemarcus.cpp Creature.cpp \ + Hazard.cpp Level.cpp MapObject.cpp Monster.cpp Pickup.cpp Platform.cpp \ + Player.cpp Screen.cpp Sprite.cpp -o intensemarcus + +clean: intensemarcus + rm -f intensemarcus |