Last change
on this file since 126 was 104, checked in by gyoung, 23 months ago |
Remaining changes from merge with Lars 2.9 branch
|
File size:
1.1 KB
|
Rev | Line | |
---|
[2] | 1 | # List of languages to be built.
|
---|
[104] | 2 | LANGUAGES = de en es fr nl it 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
|
---|
| 6 | export 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] | 11 | ECS_COMPILE = YES
|
---|
[2] | 12 |
|
---|
| 13 | ifdef ECS_COMPILE
|
---|
| 14 | # Don't use an empty string here!
|
---|
| 15 | ECS = ECS
|
---|
| 16 | else
|
---|
| 17 | # Don't use an empty string here!
|
---|
| 18 | ECS = NO_ECS
|
---|
| 19 | endif
|
---|
| 20 |
|
---|
| 21 | VERSION = 0_2_9
|
---|
| 22 | VERSION_STRING = 0.2.9
|
---|
[54] | 23 | AUTHOR_STRING = "(C) Chris Wohlgemuth 2002-2005 Gregg Young 2023"
|
---|
[55] | 24 | BUILD_ROOT = U:/CWMM_Workspace/Trunk
|
---|
[2] | 25 |
|
---|
| 26 | # Put version in environment for REXX skripts
|
---|
| 27 | export MMCLSVERSION = $(VERSION_STRING)
|
---|
| 28 |
|
---|
| 29 | ifdef ECS_COMPILE
|
---|
| 30 | PKGNAME = ecs-cw-mmclasses
|
---|
| 31 | else
|
---|
| 32 | PKGNAME = cw-mmclasses
|
---|
| 33 | endif
|
---|
| 34 |
|
---|
| 35 | ECSBASE = add2mmos2
|
---|
| 36 | ECSCLASSDIR = MMClass
|
---|
| 37 | ECSMFLDRDIR = MediaFld
|
---|
| 38 |
|
---|
[4] | 39 | #The base dir off the CW function toolkit
|
---|
[54] | 40 | export COMMONSRC = $(BUILD_ROOT)/common_functions
|
---|
[2] | 41 |
|
---|
[104] | 42 | export NLVBASE = $(BUILD_ROOT)/nlv
|
---|
| 43 | export MMSRCBASE = $(BUILD_ROOT)
|
---|
[2] | 44 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.