-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmake.dm
More file actions
49 lines (35 loc) · 1.16 KB
/
make.dm
File metadata and controls
49 lines (35 loc) · 1.16 KB
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
//**************************************************************
//
// SS99 Main Makefile
// =====================
// This file includes compilation instructions for the BYOND DM
// compiler (currently the only DM compiler).
//
// Its main job is to #include other DM makefiles. These are
// called _index.dm (better name ideas welcome).
//
// Feel free to #include files more than once: the DM compiler
// won't waste time processing them again.
//
//
// Explanation of debug options:
// --------------------------------
// DEBUG
// This one just makes sure
//
//
//**************************************************************
// Options /////////////////////////////////////////////////////
#define DEBUG TRUE
#define DEBUG_BYOND TRUE
#define DEBUG_COMPILATION TRUE
// Compilation /////////////////////////////////////////////////
#warn [INFO]: Compiling with BYOND version DM_VERSION ...
#if(DM_VERSION < 507)
#error Sorry, must be 507 or taller to ride.
#else /* Because there's no "give up" command */
#include "def/stddef.dm"
#include "def/_make.dm"
#include "core/_make.dm"
#include "map/_make.dm"
#endif