Changeset 9 for trunk/src/wmakefile


Ignore:
Timestamp:
Sep 13, 2010, 12:44:39 AM (15 years ago)
Author:
root
Message:

fixes for Watcom compiler

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wmakefile

    r7 r9  
    2525#  along with this program; if not, write to the Free Software
    2626#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     27
     28###############################################################################
     29# wmake options
     30
     31.ERASE # disable prompt to delete out of date files on compile errors
     32
    2733
    2834###############################################################################
     
    6066               -I$(DDK)$(PS)BASE$(PS)SRC$(PS)DEV$(PS)DASD$(PS)DISKINC
    6167
    62 LIB_DIRS     = $(DDK)$(PS)BASE$(PS)LIB$(PS); &
    63                $(DDK)$(PS)BASE$(PS)SRC$(PS)DEV$(PS)DASD$(PS)DEVHLP$(PS); &
    64                $(WATCOM)$(PS)LIB$(PS);
     68LIB_DIRS     = $(DDK)$(PS)BASE$(PS)LIB$(PS);$(DDK)$(PS)BASE$(PS)SRC$(PS)DEV$(PS)DASD$(PS)DEVHLP$(PS);$(WATCOM)$(PS)LIB$(PS);
    6569
    6670
     
    7074TARGET   = os2ahci.add
    7175
    72 LIBS     = addcalls dhcalls doscalls slibcep rmcalls
     76LIBS     = addcalls,dhcalls,doscalls,slibcep,rmcalls
    7377
    7478SRCS     = init.asm libc.c os2ahci.c pci.c ahci.c ata.c atapi.c ctxhook.c
    7579
    76 OBJS     = init.obj libc.obj os2ahci.obj pci.obj ahci.obj ata.obj atapi.obj &
     80OBJS     = init.obj libc.obj os2ahci.obj pci.obj ahci.obj ata.obj atapi.obj&
    7781           ctxhook.obj
    7882
     
    9094
    9195AFLAGS        = -2 -bt=os2 -w3 -zq -ms
    92 CFLAGS        = -bt=os2 -ms -s -zdp -zff -zgf -zu -zl -2 -w2 -wcd=138 -zp=1
     96CFLAGS        = -bt=os2 -ms -s -zdp -zff -zgf -zu -zl -2 -w2 -wcd=138 -zp=1 -q
    9397CFLAGS_DEBUG  = -d3 -hc
    94 LFLAGS        = name $(TARGET) sys os2 dll initglobal option map quiet &
     98LFLAGS        = name $(TARGET) sys os2 dll initglobal option map option quiet &
    9599                libpath $(LIB_DIRS) lib os2 file $(OBJS) library $(LIBS)
    96100LFLAGS_DEBUG  = DEBUG CODEVIEW option cvpack
Note: See TracChangeset for help on using the changeset viewer.