summaryrefslogtreecommitdiff
path: root/Makefile
blob: c86efd7c678b5eca969c4bbfa6d71d14be87b173 (plain)
1
2
3
4
5
6
7
8
9
CC = g++

intensemarcus: intensemarcus.h intensemarcus.cpp Creature.h Creature.cpp Hazard.h Hazard.cpp Level.h Level.cpp MapObject.h MapObject.cpp Monster.h Monster.cpp Pickup.h Pickup.cpp Platform.h Platform.cpp Player.h Player.cpp Screen.h Screen.cpp Sprite.h Sprite.cpp
	$(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 Weapon.cpp Projectile.cpp Shotgun.cpp -o intensemarcus

clean: intensemarcus
	rm -f intensemarcus