97 |
cycrow |
1 |
# Builds all the projects in the solution...
|
|
|
2 |
.PHONY: all_projects
|
|
|
3 |
all_projects: ModDiff spkconvert spkinstall spktool XModPatch catpck spk Direct3D-Hook PluginManager GameLauncher ModMerge XspConvert AutoUpdater Creator SpkExplorer
|
|
|
4 |
|
|
|
5 |
# Builds project 'ModDiff'...
|
|
|
6 |
.PHONY: ModDiff
|
|
|
7 |
ModDiff: spk
|
|
|
8 |
make --directory="../Tools/Windows/" --file=ModDiff.makefile
|
|
|
9 |
|
|
|
10 |
# Builds project 'spkconvert'...
|
|
|
11 |
.PHONY: spkconvert
|
|
|
12 |
spkconvert: spk
|
|
|
13 |
make --directory="../Tools/Windows/" --file=spkconvert.makefile
|
|
|
14 |
|
|
|
15 |
# Builds project 'spkinstall'...
|
|
|
16 |
.PHONY: spkinstall
|
|
|
17 |
spkinstall: spk
|
|
|
18 |
make --directory="../Tools/Windows/" --file=spkinstall.makefile
|
|
|
19 |
|
|
|
20 |
# Builds project 'spktool'...
|
|
|
21 |
.PHONY: spktool
|
|
|
22 |
spktool: spk
|
|
|
23 |
make --directory="../Tools/Windows/" --file=spktool.makefile
|
|
|
24 |
|
|
|
25 |
# Builds project 'XModPatch'...
|
|
|
26 |
.PHONY: XModPatch
|
|
|
27 |
XModPatch: spk
|
|
|
28 |
make --directory="../Tools/Windows/" --file=XModPatch.makefile
|
|
|
29 |
|
|
|
30 |
# Builds project 'catpck'...
|
|
|
31 |
.PHONY: catpck
|
|
|
32 |
catpck: spk
|
|
|
33 |
make --directory="../Tools/Windows/" --file=catpck.makefile
|
|
|
34 |
|
|
|
35 |
# Builds project 'spk'...
|
|
|
36 |
.PHONY: spk
|
|
|
37 |
spk:
|
|
|
38 |
make --directory="../libspk/Windows/" --file=spk.makefile
|
|
|
39 |
|
|
|
40 |
# Builds project 'Direct3D-Hook'...
|
|
|
41 |
.PHONY: Direct3D-Hook
|
|
|
42 |
Direct3D-Hook: spk
|
|
|
43 |
make --directory="../Direct3D-Hook/Windows/" --file=Direct3D-Hook.makefile
|
|
|
44 |
|
|
|
45 |
# Builds project 'PluginManager'...
|
|
|
46 |
.PHONY: PluginManager
|
|
|
47 |
PluginManager: spk
|
|
|
48 |
make --directory="../PluginManager/" --file=PluginManager.makefile
|
|
|
49 |
|
|
|
50 |
# Builds project 'GameLauncher'...
|
|
|
51 |
.PHONY: GameLauncher
|
|
|
52 |
GameLauncher: Direct3D-Hook spk
|
|
|
53 |
make --directory="../GameLauncher/" --file=GameLauncher.makefile
|
|
|
54 |
|
|
|
55 |
# Builds project 'ModMerge'...
|
|
|
56 |
.PHONY: ModMerge
|
|
|
57 |
ModMerge: spk
|
|
|
58 |
make --directory="../ModMerge/" --file=ModMerge.makefile
|
|
|
59 |
|
|
|
60 |
# Builds project 'XspConvert'...
|
|
|
61 |
.PHONY: XspConvert
|
|
|
62 |
XspConvert: spk
|
|
|
63 |
make --directory="../XspConvert/" --file=XspConvert.makefile
|
|
|
64 |
|
|
|
65 |
# Builds project 'AutoUpdater'...
|
|
|
66 |
.PHONY: AutoUpdater
|
|
|
67 |
AutoUpdater:
|
|
|
68 |
make --directory="../AutoUpdater/" --file=AutoUpdater.makefile
|
|
|
69 |
|
|
|
70 |
# Builds project 'Creator'...
|
|
|
71 |
.PHONY: Creator
|
|
|
72 |
Creator: spk
|
|
|
73 |
make --directory="../Creator/" --file=Creator.makefile
|
|
|
74 |
|
|
|
75 |
# Builds project 'SpkExplorer'...
|
|
|
76 |
.PHONY: SpkExplorer
|
|
|
77 |
SpkExplorer: spk
|
|
|
78 |
make --directory="../SpkExplorer/" --file=SpkExplorer.makefile
|
|
|
79 |
|
|
|
80 |
# Cleans all projects...
|
|
|
81 |
.PHONY: clean
|
|
|
82 |
clean:
|
|
|
83 |
make --directory="../Tools/Windows/" --file=ModDiff.makefile clean
|
|
|
84 |
make --directory="../Tools/Windows/" --file=spkconvert.makefile clean
|
|
|
85 |
make --directory="../Tools/Windows/" --file=spkinstall.makefile clean
|
|
|
86 |
make --directory="../Tools/Windows/" --file=spktool.makefile clean
|
|
|
87 |
make --directory="../Tools/Windows/" --file=XModPatch.makefile clean
|
|
|
88 |
make --directory="../Tools/Windows/" --file=catpck.makefile clean
|
|
|
89 |
make --directory="../libspk/Windows/" --file=spk.makefile clean
|
|
|
90 |
make --directory="../Direct3D-Hook/Windows/" --file=Direct3D-Hook.makefile clean
|
|
|
91 |
make --directory="../PluginManager/" --file=PluginManager.makefile clean
|
|
|
92 |
make --directory="../GameLauncher/" --file=GameLauncher.makefile clean
|
|
|
93 |
make --directory="../ModMerge/" --file=ModMerge.makefile clean
|
|
|
94 |
make --directory="../XspConvert/" --file=XspConvert.makefile clean
|
|
|
95 |
make --directory="../AutoUpdater/" --file=AutoUpdater.makefile clean
|
|
|
96 |
make --directory="../Creator/" --file=Creator.makefile clean
|
|
|
97 |
make --directory="../SpkExplorer/" --file=SpkExplorer.makefile clean
|
|
|
98 |
|