Ignore:
Timestamp:
Nov 23, 2000, 7:36:41 PM (25 years ago)
Author:
umoeller
Message:

Updates for V0.9.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/makefile

    r9 r13  
    136136# The exclamation point ( ! ) preceding the LIB command causes NMAKE
    137137# to execute the LIB command once for each dependent file in the list.
     138
    138139$(OUTPUTDIR)\helpers.lib: $(OBJS)
    139140!ifdef EMX
    140     !emxomfar cr $(OUTPUTDIR)\helpers.lib $?
     141    !emxomfar cr $* $?
    141142!else
    142     !ilib /nol /nob $(OUTPUTDIR)\helpers.lib -+$?;
     143    !ilib /nol /nob $* -+$?;
     144!endif
     145
     146# same thing for cp.lib
     147$(OUTPUTDIR)\cp.lib: $(CPOBJS)
     148!ifdef EMX
     149    !emxomfar cr $* $?
     150!else
     151    !ilib /nol /nob $* -+$?;
     152!endif
     153
     154# same thing for plainc.lib
     155$(OUTPUTDIR)\plainc.lib: $(PLAINCOBJS)
     156!ifdef EMX
     157    !emxomfar cr $* $?
     158!else
     159    !ilib /nol /nob $* -+$?;
    143160!endif
    144161
Note: See TracChangeset for help on using the changeset viewer.