Changeset 1890 for trunk/makefile_pre.mk
- Timestamp:
- Jan 30, 2020, 7:39:42 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/makefile_pre.mk
r1661 r1890 3 3 4 4 # Copyright (c) 1993-98 M. Kimes 5 # Copyright (c) 2002 , 2012Steven H. Levine5 # Copyright (c) 2002-2020 Steven H. Levine 6 6 7 7 # 03 Jan 08 SHL Switch to wrc.exe default; support USE_RC from environment … … 15 15 # 07 Jan 11 SHL sort map 16 16 # 25 Jan 12 SHL Comments 17 # 14 Aug 15 SHL Test hll debug - FIXME to be gone 18 # 25 Jan 20 SHL Add PMPRINTF support - PMPRINTF_OPT CFLAGS 17 19 18 20 # Environment: see dll\makefile … … 61 63 !endif 62 64 65 !ifdef PMPRINTF # if defined on wmake command line 66 PMPRINTF_OPT = PMPRINTF=$(PMPRINTF) # set in case needed by sub-make 67 !else 68 !ifdef %PMPRINTF # if defined in environment 69 PMPRINTF = $(%PMPRINTF) # use value from environment 70 PMPRINTF_OPT = PMPRINTF=$(PMPRINTF) # set in case needed by sub-make 71 !endif 72 !endif 73 63 74 SYMS = $(BASE).sym # target for building SYM files 64 75 … … 94 105 95 106 # We always compile with debug info to avoid needing a full rebuild just to debug 107 # 2015-08-14 SHL HLL debug testing 108 # CFLAGS = -bt=os2 -mf -bm -d2 -olirs -s -j -wx -zfp -zgp -zp4 -zq -hc 96 109 CFLAGS = -bt=os2 -mf -bm -d2 -olirs -s -j -wx -zfp -zgp -zp4 -zq -hd 97 110 … … 106 119 !endif 107 120 121 !ifdef PMPRINTF 122 CFLAGS += -dPMPRINTF 123 !endif 124 108 125 LFLAGS = sys os2v2_pm op quiet op verbose op cache op caseexact op map sort global 109 126 !ifdef DEBUG 110 127 CFLAGS += -d$DEBUG_OPT 128 # 2015-08-14 SHL HLL debug testing 129 # LFLAGS += debug hll all 111 130 LFLAGS += debug dwarf all 112 131 !endif … … 144 163 $(CC) $(CFLAGS) $*.c 145 164 146 # The end165 # eof
Note:
See TracChangeset
for help on using the changeset viewer.