Changeset 1023
- Timestamp:
- May 28, 2008, 4:14:53 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/makefile_pre.mk ¶
r983 r1023 12 12 # 03 Jan 08 SHL Switch to wrc.exe default; support USE_RC from environment 13 13 # 23 Jan 08 JBS Add support for building SYM files (Ticket 226) 14 # 27 May 08 SHL Add WARNALL and FORTIFY support 14 15 15 16 CC = wcc386 … … 40 41 !endif 41 42 43 !ifdef %WARNALL # if defined in environment 44 WARNALL = $(%WARNALL) # use value from environment 45 !endif 46 47 !ifdef %FORTIFY # if defined in environment 48 FORTIFY = $(%FORTIFY) # use value from environment 49 !endif 50 42 51 SYMS = $(BASE).sym #set a target for building SYM files 43 52 … … 57 66 # -sg generate calls to grow the stack 58 67 # -st touch stack through SS first 59 # -wcd14 no reference to symbol60 # -wcd726 no reference to formal parameter61 68 # -we treat warnings as errors 62 69 # -wx max warnings … … 66 73 # -zq quiet 67 74 75 # -wx excludes these 76 # See GenCOptions() in openwatcom\bld\cc\c\coptions.c 77 # -wce130 possible loss of precision 78 # -wcd=303 no reference to formal parameter 79 # -wcd=307 obsolete non-prototype declarator 80 # -wcd=308 unprototyped function called 81 # -wcd=309 unprototyped function called indirectly 82 68 83 # We always compile with debug info to avoid needed a full rebuild just to debug 69 CFLAGS = -bt=os2 -mf -bm -d2 -olirs -s -j -we -wx -zfp -zgp -zp4 -zq -hd 84 CFLAGS = -bt=os2 -mf -bm -d2 -olirs -s -j -wx -zfp -zgp -zp4 -zq -hd 85 86 !ifdef WARNALL 87 CFLAGS += -wce=118 -wce=130 -wce=303 -wce=307 -wce=308 -wce=309 88 !else 89 CFLAGS += -we 90 !endif 91 92 !ifdef FORTIFY 93 CFLAGS += -dFORTIFY 94 !endif 70 95 71 96 LFLAGS = sys os2v2_pm op quiet op verbose op cache op caseexact op map
Note:
See TracChangeset
for help on using the changeset viewer.