-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
42 lines (39 loc) · 811 Bytes
/
makefile
File metadata and controls
42 lines (39 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
CXX = Main.cpp
CXX += Game.cpp
CXX += Game.hpp
CXX += Garden.hpp
CXX += Garden.cpp
CXX += Azathoth.hpp
CXX += Azathoth.cpp
CXX += Rooms.hpp
CXX += Rooms.cpp
CXX += Basement.cpp
CXX += Basement.hpp
CXX += CeremonyChamber.cpp
CXX += CeremonyChamber.hpp
CXX += Conservatory.hpp
CXX += Conservatory.cpp
CXX += Creature.cpp
CXX += Creature.hpp
CXX += Cultist.cpp
CXX += Cultist.hpp
CXX += DiningRoom.cpp
CXX += DiningRoom.hpp
CXX += Foyer.cpp
CXX += Foyer.hpp
CXX += GuestRoom.hpp
CXX += GuestRoom.cpp
CXX += Hallway.cpp
CXX += Hallway.hpp
CXX += Kitchen.hpp
CXX += Kitchen.cpp
CXX += MasterBedRoom.hpp
CXX += MasterBedroom.cpp
CXX += Study.hpp
CXX += Study.cpp
PROG1 = eldritchEstate
PROGS = ${PROG1}
default:
g++ ${CXX} -o eldritchEstate
clean:
rm -f ${PROGS} *.o *~