source: branches/v2.9_Lars/make.inc@ 116

Last change on this file since 116 was 91, checked in by erdmann, 23 months ago

merging v2.9 into v2.9_Lars branch, in particular, this means adding french,spanish,russian translations

File size: 1.2 KB
Line 
1# List of languages to be built.
2LANGUAGES = de en es fr nl it tw
3
4#define the next makro if compiling a release rather than a beta
5#This will remove the build string from the about dialog
6export CWMMRELEASE = YES
7
8#define the next makro if compiling eCS. Undef if normal compile!
9#That's used for createcd.exe until I find a decent documentation for make to do it better...
10#Also used for including the right icons
11ECS_COMPILE = YES
12
13ifdef ECS_COMPILE
14# Don't use an empty string here!
15ECS = ECS
16else
17# Don't use an empty string here!
18ECS = NO_ECS
19endif
20
21VERSION = 0_2_9
22VERSION_STRING = 0.2.9
23AUTHOR_STRING = "(C) Chris Wohlgemuth 2002-2005 Gregg Young 2023"
24BUILD_ROOT = D:/cwmm/branches/v2.9_Lars
25
26# Put version in environment for REXX skripts
27export MMCLSVERSION = $(VERSION_STRING)
28
29ifdef ECS_COMPILE
30PKGNAME = ecs-cw-mmclasses
31else
32PKGNAME = cw-mmclasses
33endif
34
35ECSBASE = add2mmos2
36ECSCLASSDIR = MMClass
37ECSMFLDRDIR = MediaFld
38
39#The base dir off the CW function toolkit
40export COMMONSRC = $(BUILD_ROOT)/common_functions
41
42export NLVBASE = $(BUILD_ROOT)/nlv
43export MMSRCBASE = $(BUILD_ROOT)
44
Note: See TracBrowser for help on using the repository browser.