Changeset 148 for sbliveos2/trunk/drv32/makefile.os2
- Timestamp:
- Apr 26, 2000, 8:01:02 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sbliveos2/trunk/drv32/makefile.os2
r142 r148 35 35 36 36 !if "$(DEBUG)" == "1" 37 #CFLAGS = -dDEBUG -bt=os2v2 -e60 -hc -d2 -5r -i$(INC) -omlinear -s -w4 -xd -ze -zdp -zl -zq -nt=CODE32 -zff -zgf -zu -zp1 -mc 38 CFLAGS = -dDEBUG -bt=os2v2 -e60 -hc -d2 -5r -i$(INC) -omlinear -s -w4 -xd -ze -zdp -zl -zq -nt=CODE32 -zff -zgf -zp1 -mf -DKEE 37 CFLAGS = -dDEBUG -bt=os2v2 -e60 -hc -d2 -5r -i$(INC) -omlinear -s -w4 -xd -ze -zdp -zl -zq -nt=CODE32 -zff -zgf -zp1 38 ASFLAGS = -Mb -Li -Sv:M510 39 39 !else 40 #CFLAGS = -bt=os2v2 -e60 -5r -i$(INC) -omlinear -s -w4 -xd -ze -zdp -zl -zq -nt=CODE32 -zff -zgf -zu -zp1 -mc 41 CFLAGS = -bt=os2v2 -e60 -5r -i$(INC) -omlinear -s -w4 -xd -ze -zdp -zl -zq -nt=CODE32 -zff -zgf -zp1 -mf -DKEE 40 CFLAGS = -bt=os2v2 -e60 -5r -i$(INC) -omlinear -s -w4 -xd -ze -zdp -zl -zq -nt=CODE32 -zff -zgf -zp1 41 ASFLAGS = -Mb -Li -Sv:M510 42 !endif 43 44 !if "$(KEE)" == "1" 45 CFLAGS = $(CFLAGS) -mf -DKEE 46 ASFLAGS = $(ASFLAGS) -D:KEE 47 !else 48 CFLAGS = $(CFLAGS) -mc -zu 42 49 !endif 43 50 44 51 CC = WPP386 $(CFLAGS) $(IWC) 45 CCSMALL = WPP386 $(CFLAGS_SMALL) $(IWC)46 47 !if "$(DEBUG)" == "1"48 ASFLAGS = -Mb -Li -Sv:M510 -D:KEE49 !else50 ASFLAGS = -Mb -Li -Sv:M510 -D:KEE51 !endif52 52 ASM = alp $(ASFLAGS) $(INCA) 53 53 … … 92 92 FILE2 = strategy.obj 93 93 FILE3 = init.obj 94 FILE4 = devhlp.obj94 FILE4 = impmvdm.lib devhlp.obj 95 95 FILE5 = idc.obj dispatch.obj 96 96 FILE6 = impdos.lib 97 !if "$(KEE)" == "1" 97 98 FILE7 = impkee.lib 99 !endif 98 100 FILE8 = ..\sblive\sblive32.lib ..\lib32\linuxlib.lib 99 101 FILELAST = end.obj … … 116 118 @%write $^@ option description '@$#$(_VENDOR):$(_VERSION)$#@' 117 119 @%write $^@ option map=$(WMAPNAME) 120 @for %f in ($(FILES)) do @%append $^@ file %f 121 #!if "$(KEE)" == "1" 118 122 @%write $^@ import DOSIODELAYCNT DOSCALLS.427 119 @for %f in ($(FILES)) do @%append $^@ file %f123 #!endif 120 124 @%write $^@ library $(%WATCOM)\lib386\os2\clib3r.lib 121 125 … … 125 129 mapsym $(TARGET).MAP 126 130 copy $(TARGET).sys ..\bin 131 !ifdef KEE 132 copy $(TARGET).sys ..\bin\$(TARGET)kee.sys 133 !else 134 copy $(TARGET).sys ..\bin\$(TARGET)w4.sys 135 !endif 127 136 copy $(TARGET).sym ..\bin 128 137 129 138 clean: 130 del *.obj *.err *.lnk *.sys *.sym *.lst *.map *.wmap 139 del *.obj *.err *.lnk *.sys *.sym *.lst *.map *.wmap *.lib 131 140
Note:
See TracChangeset
for help on using the changeset viewer.