Changeset 846


Ignore:
Timestamp:
Sep 6, 1999, 3:56:21 AM (26 years ago)
Author:
bird
Message:

The ???exp.def files are now generated by ImpDef.

Location:
trunk/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/advapi32/makefile

    r604 r846  
    1 # $Id: makefile,v 1.10 1999-08-21 12:29:28 sandervl Exp $
     1# $Id: makefile,v 1.11 1999-09-06 01:51:47 bird Exp $
    22
    33#
    44# PD-Win32 API
    55#
    6 #       advapi32.dll makefile
     6#       advapi32.dll makefile
    77#
    88
     
    1010PDWIN32_LIB = ..\..\lib
    1111PDWIN32_BIN = ..\..\bin
     12PDWIN32_TOOLS = ..\..\tools\bin
    1213
    1314
     
    2728
    2829$(TARGET).dll: $(OBJS) $(TARGET).def
    29         $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \
     30        $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \
    3031              $(PDWIN32_LIB)/kernel32.lib \
    3132              $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)
    32         $(CP) $@ $(PDWIN32_BIN)
     33        $(CP) $@ $(PDWIN32_BIN)
    3334
    3435
    3536$(TARGET).lib: $(TARGET)exp.def
    36         $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def
    37         $(CP) $@ $(PDWIN32_LIB)
     37        $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def
     38    $(CP) $@ $(PDWIN32_LIB)
     39
     40$(TARGET)exp.def: $(TARGET).def
     41        $(IMPDEF) $** $@
    3842
    3943
     
    4347
    4448clean:
    45         $(RM) *.obj *.lib *.dll *~ *.map *.pch 
    46         $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    47         $(RM) $(PDWIN32_LIB)\$(TARGET).lib
    48 
    49 
    50 
     49    $(RM) *.obj *.lib *.dll *~ *.map *.pch
     50    $(RM) $(PDWIN32_BIN)\$(TARGET).dll
     51    $(RM) $(PDWIN32_LIB)\$(TARGET).lib
     52    $(RM) $(TARGET)exp.def
  • TabularUnified trunk/src/gdi32/makefile

    r604 r846  
    1 # $Id: makefile,v 1.6 1999-08-21 12:29:29 sandervl Exp $
     1# $Id: makefile,v 1.7 1999-09-06 01:50:32 bird Exp $
    22
    33#
     
    1010PDWIN32_LIB = ..\..\lib
    1111PDWIN32_BIN = ..\..\bin
     12PDWIN32_TOOLS = ..\..\tools\bin
    1213
    1314
     
    3839        $(CP) $@ $(PDWIN32_LIB)
    3940
     41$(TARGET)exp.def: $(TARGET).def
     42    $(IMPDEF) $** $@
     43
    4044
    4145
     
    6064
    6165clean:
    62         $(RM) *.obj *.lib *.dll *~ *.map *.pch 
     66        $(RM) *.obj *.lib *.dll *~ *.map *.pch
    6367        $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    6468        $(RM) $(PDWIN32_LIB)\$(TARGET).lib
     69    $(RM) $(TARGET)exp.def
    6570
    66 
  • TabularUnified trunk/src/kernel32/makefile

    r816 r846  
    1 # $Id: makefile,v 1.38 1999-09-04 12:41:46 sandervl Exp $
     1# $Id: makefile,v 1.39 1999-09-06 01:48:42 bird Exp $
    22
    33#
     
    1010PDWIN32_LIB = ..\..\lib
    1111PDWIN32_BIN = ..\..\bin
     12PDWIN32_TOOLS = ..\..\tools\bin
    1213
    1314
     
    5455$(TARGET).lrf: makefile
    5556        @echo Creating file <<$(@B).lrf
    56 $(OBJS) 
    57 $(PDWIN32_LIB)\PMWINX.LIB 
    58 $(PDWIN32_LIB)\LIBULS.LIB 
    59 $(PDWIN32_LIB)\LIBCONV.LIB 
    60 $(PDWIN32_LIB)\odincrt.lib 
    61 OS2386.LIB 
    62 $(RTLLIB_O) 
     57$(OBJS)
     58$(PDWIN32_LIB)\PMWINX.LIB
     59$(PDWIN32_LIB)\LIBULS.LIB
     60$(PDWIN32_LIB)\LIBCONV.LIB
     61$(PDWIN32_LIB)\odincrt.lib
     62OS2386.LIB
     63$(RTLLIB_O)
    6364$(TARGET).def
    6465<<keep
     
    6768        $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def
    6869        $(CP) $@ $(PDWIN32_LIB)
     70
     71$(TARGET)exp.def: $(TARGET).def
     72        $(IMPDEF) $** $@
    6973
    7074$(PDWIN32_LIB)\pmwinx.lib:
     
    221225lfile.OBJ: \
    222226    .\lfile.cpp \
    223     $(PDWIN32_INCLUDE)\wprocess.h 
     227    $(PDWIN32_INCLUDE)\wprocess.h
    224228
    225229obsolete.OBJ: \
     
    328332
    329333virtual.obj:   virtual.cpp $(PDWIN32_INCLUDE)\win\virtual.h $(PDWIN32_INCLUDE)\handlemanager.h mmap.h
    330 mmap.obj:      mmap.cpp mmap.h $(PDWIN32_INCLUDE)\vmutex.h oslibdos.h 
     334mmap.obj:      mmap.cpp mmap.h $(PDWIN32_INCLUDE)\vmutex.h oslibdos.h
    331335
    332336pefile.OBJ:    pefile.cpp $(PDWIN32_INCLUDE)\pefile.h
     
    353357        $(RM) $(PDWIN32_LIB)\$(TARGET).LIB
    354358        $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    355 
    356 
     359        $(RM) $(TARGET)exp.def
  • TabularUnified trunk/src/user32/Makefile

    r604 r846  
    1 # $Id: Makefile,v 1.15 1999-08-21 12:29:31 sandervl Exp $
     1# $Id: Makefile,v 1.16 1999-09-06 01:49:54 bird Exp $
    22
    33#
     
    1010PDWIN32_LIB = ..\..\lib
    1111PDWIN32_BIN = ..\..\bin
     12PDWIN32_TOOLS = ..\..\tools\bin
    1213
    1314
     
    4344        $(CP) $@ $(PDWIN32_LIB)
    4445
     46$(TARGET)exp.def: $(TARGET).def
     47        $(IMPDEF) $** $@
    4548
    4649user32.obj: user32.cpp $(PDWIN32_INCLUDE)\wndproc.h \
     
    5861dde.obj: dde.cpp
    5962hook.obj: hook.cpp hooks.h
    60 defwndproc.obj: defwndproc.cpp syscolor.h $(PDWIN32_INCLUDE)\wndproc.h 
     63defwndproc.obj: defwndproc.cpp syscolor.h $(PDWIN32_INCLUDE)\wndproc.h
    6164hooks.obj: hooks.cpp hooks.h
    6265dlgconvert.obj: dlgconvert.cpp \
     
    8184        $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    8285        $(RM) $(PDWIN32_LIB)\$(TARGET).lib
     86        $(RM) $(TARGET)exp.def
  • TabularUnified trunk/src/user32/new/makefile

    r835 r846  
    1 # $Id: makefile,v 1.45 1999-09-05 15:53:08 sandervl Exp $
     1# $Id: makefile,v 1.46 1999-09-06 01:56:21 bird Exp $
    22
    33#
     
    1010PDWIN32_LIB = ..\..\..\lib
    1111PDWIN32_BIN = ..\..\..\bin
     12PDWIN32_TOOLS = ..\..\..\tools\bin
    1213
    1314
     
    5354        $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def
    5455        $(CP) $@ $(PDWIN32_LIB)
     56
     57$(TARGET)exp.def: $(TARGET).def
     58        $(IMPDEF) $** $@
    5559
    5660
     
    101105pmwindow.obj:   pmwindow.cpp win32class.h win32wbase.h win32dlg.h pmwindow.h win32wndchild.h $(PDWIN32_INCLUDE)\wprocess.h oslibgdi.h oslibwin.h
    102106win32class.obj: win32class.cpp win32class.h win32wbase.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h
    103 win32wbase.obj:   win32wbase.cpp win32class.h win32wbase.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h  $(PDWIN32_INCLUDE)\winres.h oslibres.h win32wndhandle.h oslibdos.h 
     107win32wbase.obj:   win32wbase.cpp win32class.h win32wbase.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h  $(PDWIN32_INCLUDE)\winres.h oslibres.h win32wndhandle.h oslibdos.h
    104108win32wnd.obj:   win32wnd.cpp win32class.h win32wbase.h win32wnd.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h  $(PDWIN32_INCLUDE)\winres.h oslibres.h win32wndhandle.h oslibdos.h oslibmenu.h
    105109win32dlg.obj:   win32dlg.cpp win32class.h win32wbase.h win32dlg.h gen_object.h heapshared.h oslibwin.h win32wndchild.h oslibmsg.h
     
    125129        $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    126130        $(RM) $(PDWIN32_LIB)\$(TARGET).lib
     131        $(RM) $(TARGET)exp.def
Note: See TracChangeset for help on using the changeset viewer.