-
Notifications
You must be signed in to change notification settings - Fork 131
/
makefile.lua
137 lines (134 loc) · 4.18 KB
/
makefile.lua
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
136
137
#!/usr/bin/lua
xpcall( function() dofile( "config.lua") end, function() end )
VALKYRIE_ROOT = VALKYRIE_ROOT or os.getenv("FPCVALKYRIE_ROOT") or "../fpcvalkyrie/"
dofile (VALKYRIE_ROOT.."scripts/lua_make.lua")
makefile = {
name = "drl",
fpc_params = {
"-Fu"..VALKYRIE_ROOT.."src",
"-Fu"..VALKYRIE_ROOT.."libs",
},
fpc_os_params = {
WINDOWS = {},
LINUX = {
"-TLINUX",
},
MACOSX = {
"-dOSX_APP_BUNDLE",
"-k-macosx_version_min -k10.4",
},
},
pre_build = function()
local v = make.readversion( "bin/version.txt" )
local s = make.gitrevision()
make.writeversion( "src/version.inc", v, s )
--make.svncheck(s)
end,
post_build = function()
os.execute_in_dir( "makewad", "bin" )
end,
source_files = { "drl.pas", "makewad.pas", "drlwad.pas" },
publish = {
lq = {
exec = { "drl" },
files = { "config.lua" },
os = {
WINDOWS = { "fmod64.dll", "lua5.1.dll", "SDL2.dll", "SDL2_image.dll", "SDL2_mixer.dll", "drl_console.bat" },
LINUX = { "unix_notes.txt", "drl_gnome-terminal", "drl_konsole", "drl_xterm" },
MACOSX = { "unix_notes.txt" },
},
subdirs = {
backup = "!readme.txt",
mortem = "!readme.txt",
screenshot = "!readme.txt",
modules = "!readme.txt",
wav = "*.wav",
music = "*.mid",
},
other = { "colors.lua", "sound.lua", "music.lua", "manual.txt", "version.txt", "version_api.txt", "drl.wad", "core.wad" },
},
hq = {
exec = { "drl" },
files = { { "confighq.lua", "config.lua" } },
os = {
WINDOWS = { "fmod64.dll", "lua5.1.dll", "SDL2.dll", "SDL2_image.dll", "SDL2_mixer.dll", "drl_console.bat" },
LINUX = { "unix_notes.txt", "drl_gnome-terminal", "drl_konsole", "drl_xterm" },
MACOSX = { "unix_notes.txt" },
},
subdirs = {
backup = "!readme.txt",
mortem = "!readme.txt",
screenshot = "!readme.txt",
modules = "!readme.txt",
wavhq = "*.wav",
mp3 = "*.mp3",
},
other = { "colors.lua", "soundhq.lua", "musichq.lua", "manual.txt", "version.txt", "version_api.txt", "drl.wad", "core.wad" },
}
},
commands = {
lq = function()
make.package( make.publish( (OS_VER_PREFIX or "")..make.version_name().."-lq", "lq" ), PUBLISH_DIR )
end,
hq = function()
make.package( make.publish( (OS_VER_PREFIX or "")..make.version_name(), "hq" ), PUBLISH_DIR )
end,
install = function() makefile.commands.installhq() end,
installhq = function()
if OS == "WINDOWS" then
make.generate_iss( "doomrl.iss", "hq", PUBLISH_DIR )
elseif OS == "MACOSX" then
make.generate_bundle( "hq", PUBLISH_DIR )
end
end,
installlq = function()
if OS == "WINDOWS" then
make.generate_iss( "doomrl.iss", "lq", PUBLISH_DIR )
elseif OS == "MACOSX" then
make.generate_bundle( "lq", PUBLISH_DIR )
end
end,
all = function()
makefile.commands.lq()
makefile.commands.hq()
makefile.commands.install()
end,
alllq = function()
makefile.commands.lq()
makefile.commands.installlq()
end,
},
install = {
guid = "E78C63C9-9849-45FA-8315-2AE38A293E2E",
name = "DRL",
publisher = "ChaosForge",
license = "install\\install_license.txt",
info_after = "install\\install_after.txt",
iss_icon = "src\\icon.ico",
iss_image = "install\\install.bmp",
iss_simage = "install\\install_small.bmp",
iss_url = "http://www.chaosforge.org/",
iss_nocomp = { "wad", "mp3" },
iss_eicons = {
{ name = "DRL", exe = "drl" },
{ name = "DRL (console mode)", exe = "drl", parameters = "-console" },
{ name = "DRL Manual", file = "manual.txt" },
{ name = "ChaosForge Website", url = "http://www.chaosforge.org/" },
{ name = "DRL Website", url = "https://drl.chaosforge.org/" },
{ name = "DRL Forum", url = "http://forum.chaosforge.org/" },
},
dmg_size = 128000,
app_icon = "bin/iconfile.icns",
app_bg = "background.png",
app_fworks = {
"Frameworks/SDL.framework",
"Frameworks/SDL_image.framework",
"Frameworks/SDL_mixer.framework",
},
app_exefix = function( file )
os.execute("install_name_tool -change @rpath/SDL.framework/Versions/A/SDL @executable_path/../Frameworks/SDL.framework/Versions/A/SDL "..file )
end,
}
}
make.compile()
make.command( arg[1] )