source: branches/make.inc@ 222

Last change on this file since 222 was 173, checked in by erdmann, 15 months ago

Merged changes from Gregg's branch

File size: 1.2 KB
RevLine 
[2]1# List of languages to be built.
[132]2LANGUAGES = de en es fr nl it ru tw
[2]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
[4]11ECS_COMPILE = YES
[2]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
[164]21VERSION = 0_3_0_RC2
22VERSION_STRING = 0.3.0.RC2
[152]23AUTHOR_STRING = "(C) Chris Wohlgemuth 2002-2005 Netlabs 2023-2024"
[55]24BUILD_ROOT = U:/CWMM_Workspace/Trunk
[148]25TOOLDIR = $(BUILD_ROOT)/tools
[132]26GBMLIBPATH = U:/usr/lib/GBM
[2]27
28# Put version in environment for REXX skripts
29export MMCLSVERSION = $(VERSION_STRING)
30
31ifdef ECS_COMPILE
32PKGNAME = ecs-cw-mmclasses
33else
34PKGNAME = cw-mmclasses
35endif
36
37ECSBASE = add2mmos2
38ECSCLASSDIR = MMClass
39ECSMFLDRDIR = MediaFld
40
[4]41#The base dir off the CW function toolkit
[54]42export COMMONSRC = $(BUILD_ROOT)/common_functions
[2]43
[104]44export NLVBASE = $(BUILD_ROOT)/nlv
45export MMSRCBASE = $(BUILD_ROOT)
[2]46
Note: See TracBrowser for help on using the repository browser.