Ignore:
Timestamp:
Apr 14, 2001, 6:42:55 PM (24 years ago)
Author:
sandervl
Message:

update

File:
1 edited

Legend:

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

    r174 r175  
    2020#
    2121#******************************************************************************
     22.ERASE
     23
     24.SUFFIXES:
     25.SUFFIXES: .sys .obj .asm .inc .def .lrf .ref .lst .sym .map .c .cpp .h .lib
    2226
    2327!include ..\include\version.mak
     
    2630AINCLUDES = -I:$(%DDK)\BASE\INC
    2731
    28 LNKFILE = $(OBJDIR)\sblive32.lnk
     32LNKFILE = $(OBJDIR)\sblive32.lrf
    2933
    3034EVERYTHING_AS_CPP=1
     
    6165#
    6266#===================================================================
    63 all: $(OBJDIR)\$(TARGET).sys
     67all: $(OBJDIR)\$(TARGET).sys $(OBJDIR)\$(TARGET).sym
    6468
    6569$(LNKFILE): makefile.os2 ..\include\version.mak
     70    @%write $^@ option quiet
     71    @%write $^@ option verbose
     72    @%write $^@ option caseexact
     73    @%write $^@ option cache
    6674    @%write $^@ option alignment=16
     75    @%write $^@ option map=$(WMAPNAME)
    6776    @%write $^@ option description '@$#$(_VENDOR):$(_VERSION)$#@'
    68     @%write $^@ option map=$(WMAPNAME)
    69 # why the @#$@#$!@$ doesn't this work here?????????????????????/
    70 #    @%write $^@ name $(OBJDIR)\$(TARGET).sys
    71     @%write $^@ name $(TARGET).sys
     77    @%write $^@ name $(OBJDIR)\$(TARGET).sys
    7278    @for %f in ($(FILES)) do @%append $^@ file $(OBJDIR)\%f
    7379    @%write $^@ import DOSIODELAYCNT DOSCALLS.427
     
    8389$(OBJDIR)\$(TARGET).sys: $(LNKFILE) $(FILES)
    8490     $(LINK) @$(LNKFILE)
    85      $(WAT2MAP) $(WMAPNAME) $(OBJDIR)\$(TARGET).MAP
    86      cd $(OBJDIR)
    87      mapsym $(TARGET).MAP
    88      cd ..\..
    89 #     copy $(TARGET).sys $(OBJDIR)\$(TARGET).sys
    90      copy sblive32.sys bin\releasekee
     91     copy $(OBJDIR)\$(TARGET).sys $(SBLIVE_BIN)
    9192!ifdef KEE
    9293     copy $(OBJDIR)\$(TARGET).sys $(SBLIVE_BIN)\$(TARGET)kee.sys
     
    9697     copy $(OBJDIR)\$(TARGET).sys $(SBLIVE_BIN)
    9798
     99$(OBJDIR)\$(TARGET).sym:
     100     $(WAT2MAP) $(WMAPNAME) $(OBJDIR)\$(TARGET).MAP
     101     cd $(OBJDIR)
     102     mapsym $(TARGET).MAP
     103     cd ..\..
     104     copy $(OBJDIR)\$(TARGET).sym $(SBLIVE_BIN)
     105
    98106clean:
    99107     cd $(OBJDIR)
Note: See TracChangeset for help on using the changeset viewer.