-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
136 lines (128 loc) · 3.58 KB
/
Makefile
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# calls client and server Makefile
all: client.out server.out clientGUI.out
client.out: Makefile.client \
client/Client.cpp \
client/Client.hpp \
client/ClientMain.cpp \
client/TerminalGame.hpp \
client/TerminalGame.cpp \
common/Coordinates.hpp \
common/Defines.hpp \
common/HexagonalField.hpp \
common/NetworkBase.hpp \
common/NetworkInterface.hpp \
common/HexagonalField.cpp \
common/NetworkBase.cpp
make -f Makefile.client
server.out: Makefile.server \
server/Auction.hpp \
server/Ball.hpp \
server/Broomstick.hpp \
server/Building.hpp \
server/Calendar.hpp \
server/FanShop.hpp \
server/Hospital.hpp \
server/ImprovementBuilding.hpp \
server/ManagedPlayer.hpp \
server/Manager.hpp \
server/Match.hpp \
server/MatchesHandler.hpp \
server/Player.hpp \
server/PlayingPlayer.hpp \
server/PromotionCenter.hpp \
server/DataBase.hpp \
server/Server.hpp \
server/Stadium.hpp \
server/TrainingCenter.hpp \
server/User.hpp \
server/Tournament.hpp \
common/Coordinates.hpp \
common/Defines.hpp \
common/HexagonalField.hpp \
common/NetworkBase.hpp \
server/Auction.cpp \
server/Broomstick.cpp \
server/Building.cpp \
server/Calendar.cpp \
server/FanShop.cpp \
server/Hospital.cpp \
server/ImprovementBuilding.cpp \
server/ManagedPlayer.cpp \
server/Manager.cpp \
server/Match.cpp \
server/MatchesHandler.cpp \
server/Player.cpp \
server/PlayingPlayer.cpp \
server/PromotionCenter.cpp \
server/DataBase.cpp \
server/Server.cpp \
server/ServerMain.cpp \
server/Stadium.cpp \
server/TrainingCenter.cpp \
server/User.cpp \
server/Tournament.cpp \
common/HexagonalField.cpp \
common/NetworkBase.cpp
make -f Makefile.server
clientGUI.out: Makefile.GUI \
client/Client.hpp \
client/MatchWindow.hpp \
client/HexagonalCase.hpp \
client/MainWindow.hpp \
client/ConnexionPage.hpp \
client/LoginPage.hpp \
client/MainPage.hpp \
client/InfosWidget.hpp \
client/StadiumPage.hpp \
client/OfficePage.hpp \
client/DomainPage.hpp \
client/BuildingWidget.hpp \
client/BuyAPWidget.hpp \
client/GainAPWidget.hpp \
client/ListPlayersWidget.hpp \
client/PlayerWidget.hpp \
client/ManagePlayerWidget.hpp \
client/ListAuctionsWidget.hpp \
client/AuctionWidget.hpp \
client/AdminPage.hpp \
client/TournamentsWidget.hpp \
client/NotificationWidget.hpp \
client/SelectPlayersWidget.hpp \
client/GUImain.cpp \
client/Client.cpp \
client/MatchWindow.cpp \
client/HexagonalCase.cpp \
client/MainWindow.cpp \
client/ConnexionPage.cpp \
client/LoginPage.cpp \
client/MainPage.cpp \
client/InfosWidget.cpp \
client/StadiumPage.cpp \
client/OfficePage.cpp \
client/DomainPage.cpp \
client/BuildingWidget.cpp \
client/BuyAPWidget.cpp \
client/GainAPWidget.cpp \
client/ListPlayersWidget.cpp \
client/PlayerWidget.cpp \
client/ManagePlayerWidget.cpp \
client/ListAuctionsWidget.cpp \
client/AuctionWidget.cpp \
client/AdminPage.cpp \
client/TournamentsWidget.cpp \
client/NotificationWidget.cpp \
client/SelectPlayersWidget.cpp
make -f Makefile.GUI
Makefile.client :
qmake client.pro -o Makefile.client
Makefile.server :
qmake server.pro -o Makefile.server
Makefile.GUI :
qmake clientGui.pro -o Makefile.GUI
clean:
make clean -f Makefile.server
make clean -f Makefile.client
make clean -f Makefile.GUI
rm Makefile.server
rm Makefile.client
rm Makefile.GUI