Ignore:
Timestamp:
Apr 26, 2000, 8:01:02 PM (25 years ago)
Author:
sandervl
Message:

beta 0.25 update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sbliveos2/trunk/drv32/makefile.os2

    r142 r148  
    3535
    3636!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
     37CFLAGS  = -dDEBUG -bt=os2v2 -e60 -hc -d2 -5r -i$(INC) -omlinear -s -w4 -xd -ze -zdp -zl -zq -nt=CODE32 -zff -zgf -zp1
     38ASFLAGS = -Mb -Li -Sv:M510
    3939!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
     40CFLAGS  = -bt=os2v2 -e60 -5r -i$(INC) -omlinear -s -w4 -xd -ze -zdp -zl -zq -nt=CODE32 -zff -zgf -zp1
     41ASFLAGS = -Mb -Li -Sv:M510
     42!endif
     43
     44!if "$(KEE)" == "1"
     45CFLAGS  = $(CFLAGS) -mf -DKEE
     46ASFLAGS = $(ASFLAGS) -D:KEE
     47!else
     48CFLAGS  = $(CFLAGS) -mc -zu
    4249!endif
    4350
    4451CC      = WPP386 $(CFLAGS) $(IWC)
    45 CCSMALL = WPP386 $(CFLAGS_SMALL) $(IWC)
    46 
    47 !if "$(DEBUG)" == "1"
    48 ASFLAGS = -Mb -Li -Sv:M510 -D:KEE
    49 !else
    50 ASFLAGS = -Mb -Li -Sv:M510 -D:KEE
    51 !endif
    5252ASM     = alp $(ASFLAGS) $(INCA)
    5353
     
    9292FILE2    = strategy.obj
    9393FILE3    = init.obj
    94 FILE4    = devhlp.obj
     94FILE4    = impmvdm.lib devhlp.obj
    9595FILE5    = idc.obj dispatch.obj
    9696FILE6    = impdos.lib
     97!if "$(KEE)" == "1"
    9798FILE7    = impkee.lib
     99!endif
    98100FILE8    = ..\sblive\sblive32.lib ..\lib32\linuxlib.lib
    99101FILELAST = end.obj
     
    116118    @%write $^@ option description '@$#$(_VENDOR):$(_VERSION)$#@'
    117119    @%write $^@ option map=$(WMAPNAME)
     120    @for %f in ($(FILES)) do @%append $^@ file %f
     121#!if "$(KEE)" == "1"
    118122    @%write $^@ import DOSIODELAYCNT DOSCALLS.427
    119     @for %f in ($(FILES)) do @%append $^@ file %f
     123#!endif
    120124    @%write $^@ library $(%WATCOM)\lib386\os2\clib3r.lib
    121125
     
    125129     mapsym $(TARGET).MAP
    126130     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
    127136     copy $(TARGET).sym ..\bin
    128137
    129138clean:
    130      del *.obj *.err *.lnk *.sys *.sym *.lst *.map *.wmap
     139     del *.obj *.err *.lnk *.sys *.sym *.lst *.map *.wmap *.lib
    131140   
Note: See TracChangeset for help on using the changeset viewer.