diff options
Diffstat (limited to '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 |