Changeset 2709 for trunk/src/version


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

    r2650 r2709  
    1 # $Id: makefile,v 1.10 2000-02-05 02:13:02 sandervl Exp $
     1# $Id: makefile,v 1.11 2000-02-09 23:40:54 bird Exp $
    22
    33#
    44# PD-Win32 API
    55#
    6 #       version.dll makefile
     6#       version.dll makefile
    77#
    88
     
    2828
    2929$(TARGET).dll: $(OBJS) $(TARGET).def $(TARGET)exp.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)/crtdll.lib \
    34               $(PDWIN32_LIB)/lz32.lib OS2386.LIB $(RTLLIB_O)
    35         $(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)/crtdll.lib \
     34          $(PDWIN32_LIB)/lz32.lib OS2386.LIB $(RTLLIB_O)
     35    $(CP) $@ $(PDWIN32_BIN)
    3636
    3737
    38 $(TARGET)exp.def: $(TARGET).def
    39         $(IMPDEF) $** $@
     38
     39lib: $(TARGET).lib $(PDWIN32_LIB)\$(TARGET).lib
     40
     41$(PDWIN32_LIB)\$(TARGET).lib: $(TARGET).lib
     42    $(CP) $** $@
    4043
    4144$(TARGET).lib: $(TARGET)exp.def
    42         $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def
    43         $(CP) $@ $(PDWIN32_LIB)
     45    $(IMPLIB) $(IMPLIBFLAGS) $@ $(TARGET)exp.def
     46    $(CP) $@ $(PDWIN32_LIB)
     47
     48$(TARGET)exp.def: $(TARGET).def
     49    $(IMPDEF) $** $@
     50
    4451
    4552resource.asm: $(TARGET).rc
    4653    $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc
    4754
    48 resource.obj: resource.asm
     55
     56dep:
     57    $(DEPEND) -I$(PDWIN32_INCLUDE);$(PDWIN32_INCLUDE)\win \
     58    *.c *.cpp *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h
     59
     60!ifndef NODEP
     61!include .depend
     62!endif
    4963
    5064
    51 version.obj: version.cpp
    52 install.obj: install.c
    53 info.obj: info.c
     65clean:
     66    $(RM) *.obj *.lib *.dll *.map *.pch \
     67        $(PDWIN32_BIN)\$(TARGET).dll $(PDWIN32_LIB)\$(TARGET).lib \
     68        resource.asm $(TARGET)exp.def
    5469
    55 clean:
    56         $(RM) *.obj *.lib *.dll *.map *.pch     
    57         $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    58         $(RM) $(PDWIN32_LIB)\$(TARGET).lib
    59 
    60 
    61 
    62 
    63 
Note: See TracChangeset for help on using the changeset viewer.