- Timestamp:
- Jul 4, 2007, 2:54:53 AM (18 years ago)
- Location:
- trunk/dll
- Files:
-
- 2 edited
-
internal/makefile (modified) (2 diffs)
-
makefile (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/internal/makefile
r716 r719 31 31 CFLAGS = -bt=os2 -mf -bm -d2 -olirs -s -j -wx -zfp -zgp -zq -hd 32 32 33 # fixme34 #LFLAGS = /EXEPACK:2 /MAP /PMTYPE:VIO35 36 33 all: $(BASE).exe .symbolic 37 34 … … 48 45 @%write $^@ option cache 49 46 @%write $^@ option caseexact 50 !if $(DEBUG)47 !ifdef DEBUG 51 48 @%write $^@ debug dwarf all 52 49 !endif -
trunk/dll/makefile
r706 r719 25 25 # 12 May 07 SHL Drop obsolete macros 26 26 # 02 Jun 07 SHL Convert to OpenWatcom 27 28 # Warning - may still be missing some *.h dependencies27 # 27 Jun 07 SHL Allow DEBUG set from command line or environment 28 # 03 Jul 07 SHL Change DEBUG semantics to ifdef/ifndef 29 29 30 30 # Environment: 31 31 32 # DEBUG 0 = release build, 1 = debug build 33 # WARN define for verbose compile time warnings 32 # DEBUG - not defined = release build, defined = debug build 34 33 35 34 BASE = fm3dll … … 44 43 # fixme for wrc to build working .res 45 44 # fixme for wrc to not clobber bldlevel strings 45 46 !ifndef USE_WRC 46 47 USE_WRC = 0 48 !endif 47 49 48 50 !if $(USE_WRC) … … 50 52 !else 51 53 RC = rc 54 !endif 55 56 # Keep this code in sync with makefile_pre.mk 57 !ifndef DEBUG # if not defined on wmake command line 58 !ifdef %DEBUG # if defined in environment 59 DEBUG = $(%DEBUG) # use environment setting 60 !endif 52 61 !endif 53 62 … … 75 84 # -zq quiet 76 85 77 !ifdef %DEBUG86 !ifdef DEBUG 78 87 CFLAGS = -bt=os2 -mf -bd -bm -d2 -olirs -s -sg -j -wx -zfp -zgp -zq -hd 79 88 !else … … 84 93 CFLAGSR = -bt=os2 -mf -bd -bm -olirs -s -j -wx -zfp -zgp 85 94 86 !ifdef %DEBUG95 !ifdef DEBUG 87 96 LFLAGS = sys os2v2_dll initinstance terminstance op quiet op verbose op cache & 88 97 op caseexact op implib op map debug dwarf all
Note:
See TracChangeset
for help on using the changeset viewer.
