Changeset 2709 for trunk/src/wininet


Ignore:
Timestamp:
Feb 10, 2000, 12:40:56 AM (26 years ago)
Author:
bird
Message:

Dependencies.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wininet/makefile

    r2650 r2709  
    1 # $Id: makefile,v 1.3 2000-02-05 02:14:10 sandervl Exp $
     1# $Id: makefile,v 1.4 2000-02-09 23:40:55 bird Exp $
    22
    33#
    44# PD-Win32 API
    55#
    6 #       mpr.dll makefile
     6#       mpr.dll makefile
    77#
    88
     
    2828
    2929$(TARGET).dll: $(OBJS) $(TARGET).def
    30         $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \
    31               $(PDWIN32_LIB)/kernel32.lib \
    32               $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/odincrt.lib \
    33               $(PDWIN32_LIB)/wsock32.lib OS2386.LIB $(RTLLIB_O)
    34         $(CP) $@ $(PDWIN32_BIN)
     30    $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \
     31          $(PDWIN32_LIB)/kernel32.lib \
     32          $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/odincrt.lib \
     33          $(PDWIN32_LIB)/wsock32.lib OS2386.LIB $(RTLLIB_O)
     34    $(CP) $@ $(PDWIN32_BIN)
    3535
    3636
     37lib: $(TARGET).lib $(PDWIN32_LIB)\$(TARGET).lib
     38
     39$(PDWIN32_LIB)\$(TARGET).lib: $(TARGET).lib
     40    $(CP) $** $@
     41
    3742$(TARGET).lib: $(TARGET)exp.def
    38         $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def
    39         $(CP) $@ $(PDWIN32_LIB)
     43    $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def
     44    $(CP) $@ $(PDWIN32_LIB)
    4045
    4146$(TARGET)exp.def: $(TARGET).def
    42         $(IMPDEF) $** $@
     47    $(IMPDEF) $** $@
    4348
    4449resource.asm: $(TARGET).rc
    4550    $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc
    4651
    47 resource.obj: resource.asm
    4852
    49 wininet.obj: wininet.cpp
    50 ftp.obj: ftp.c internet.h
    51 utility.obj: utility.c internet.h
    52 internet.obj: internet.c internet.h
     53dep:
     54    $(DEPEND) -I$(PDWIN32_INCLUDE);$(PDWIN32_INCLUDE)\win \
     55    *.c *.cpp *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h
     56
     57!ifndef NODEP
     58!include .depend
     59!endif
     60
    5361
    5462clean:
    55         $(RM) *.obj *.lib *.dll *exp.def *.map *.pch
    56         $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    57         $(RM) $(PDWIN32_LIB)\$(TARGET).lib
     63    $(RM) *.obj *.lib *.dll *exp.def *.map *.pch
     64        $(PDWIN32_BIN)\$(TARGET).dll $(PDWIN32_LIB)\$(TARGET).lib \
     65        resource.asm $(TARGET)exp.def
    5866
Note: See TracChangeset for help on using the changeset viewer.