Changeset 2709 for trunk/src/wsock32


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/wsock32/makefile

    r2650 r2709  
    1 # $Id: makefile,v 1.16 2000-02-05 02:19:44 sandervl Exp $
     1# $Id: makefile,v 1.17 2000-02-09 23:40:56 bird Exp $
    22
    33#
    44# PD-Win32 API
    55#
    6 #       wsock32.dll makefile
     6#       wsock32.dll makefile
    77#
    88
     
    2727
    2828$(TARGET).dll: $(OBJS) $(TARGET).def
    29         $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \
    30               pmwsock.lib $(PDWIN32_LIB)\kernel32.lib \
    31               $(PDWIN32_LIB)\user32.lib  \
    32               $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)
    33         $(CP) $@ $(PDWIN32_BIN)
     29    $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \
     30          pmwsock.lib $(PDWIN32_LIB)\kernel32.lib \
     31          $(PDWIN32_LIB)\user32.lib  \
     32          $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)
     33    $(CP) $@ $(PDWIN32_BIN)
     34
     35
     36lib: $(TARGET).lib $(PDWIN32_LIB)\$(TARGET).lib
     37
     38$(PDWIN32_LIB)\$(TARGET).lib: $(TARGET).lib
     39    $(CP) $** $@
    3440
    3541$(TARGET).lib: $(TARGET)exp.def
     
    4046    $(IMPDEF) $** $@
    4147
     48
    4249resource.asm: $(TARGET).rc
    4350    $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc
    4451
    45 resource.obj: resource.asm
    4652
    47 wsock32.obj: wsock32.cpp   relaywin.h wsock32.h
    48 unknown.obj: unknown.cpp   wsock32.h
    49 relaywin.obj: relaywin.cpp relaywin.h wsock32.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
    5060
    5161
    5262clean:
    53         $(RM) *.obj *.lib *.dll *~ *.map *.pch
    54         $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    55         $(RM) $(PDWIN32_LIB)\$(TARGET).lib
     63    $(RM) *.obj *.lib *.dll *~ *.map *.pch \
     64        $(PDWIN32_BIN)\$(TARGET).dll $(PDWIN32_LIB)\$(TARGET).lib \
     65        resource.asm $(TARGET)exp.def
    5666
Note: See TracChangeset for help on using the changeset viewer.