Changeset 2709 for trunk/src/dinput


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

    r2650 r2709  
    1 # $Id: makefile,v 1.3 2000-02-05 01:56:38 sandervl Exp $
     1# $Id: makefile,v 1.4 2000-02-09 23:40:43 bird Exp $
    22
    33#
     
    2828
    2929$(TARGET).dll: $(OBJS) $(TARGET).def
    30         $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \
    31               $(PDWIN32_LIB)/kernel32.lib \
    32               $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O) \
    33               $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/ole32.lib
    34         $(CP) $@ $(PDWIN32_BIN)
     30    $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \
     31          $(PDWIN32_LIB)/kernel32.lib \
     32          $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O) \
     33          $(PDWIN32_LIB)/user32.lib $(PDWIN32_LIB)/ole32.lib
     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) $** $@
     48
    4349
    4450resource.asm: $(TARGET).rc
    4551    $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc
    4652
    47 resource.obj: resource.asm
     53
     54dep:
     55    $(DEPEND) -I$(PDWIN32_INCLUDE);$(PDWIN32_INCLUDE)\win \
     56    *.c *.cpp *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h
     57
     58!ifndef NODEP
     59!include .depend
     60!endif
    4861
    4962
    50 dinput.obj:   dinput.cpp oslibinput.h
    51 oslibinput.obj: oslibinput.cpp oslibinput.h $(PDWIN32_INCLUDE)\winkeyboard.h
    52 dinputguid.obj: dinputguid.cpp
     63clean:
     64    $(RM) *.obj *.lib *.dll *.map *.pch \
     65        $(PDWIN32_BIN)\$(TARGET).dll \
     66        $(PDWIN32_LIB)\$(TARGET).lib \
     67        $(TARGET)exp.def resource.asm
    5368
    54 clean:
    55         $(RM) *.obj *.lib *.dll *.map *.pch
    56         $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    57         $(RM) $(PDWIN32_LIB)\$(TARGET).lib
    58 
    59 
    60 
    61 
    62 
Note: See TracChangeset for help on using the changeset viewer.