Changeset 2709 for trunk/src/wing32


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

    r2650 r2709  
     1# $Id: makefile,v 1.5 2000-02-09 23:40:55 bird Exp $
     2
    13#
    24# PD-Win32 API
     
    2830
    2931$(TARGET).dll: $(OBJS) $(TARGET).def
    30         $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def $(LIBS)
    31   $(CP) $@ $(PDWIN32_BIN)
     32    $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def $(LIBS)
     33    $(CP) $@ $(PDWIN32_BIN)
    3234
    33 $(TARGET)exp.def: $(TARGET).def
    34     $(IMPDEF) $** $@
     35
     36
     37lib: $(TARGET).lib $(PDWIN32_LIB)\$(TARGET).lib
     38
     39$(PDWIN32_LIB)\$(TARGET).lib: $(TARGET).lib
     40    $(CP) $** $@
    3541
    3642$(TARGET).lib: $(TARGET)exp.Def
     
    3844    $(CP) $@ $(PDWIN32_LIB)\$@
    3945
    40 
    41 wing32.obj: wing32.cpp\
    42     wing32impl.h\
    43     $(PDWIN32_INCLUDE)\win\wingdi.h \
    44     $(PDWIN32_INCLUDE)\win\winuser.h
     46$(TARGET)exp.def: $(TARGET).def
     47    $(IMPDEF) $** $@
    4548
    4649
     
    4851    $(RC) $(RCFLAGS) -o resource.asm $(TARGET).rc
    4952
    50 resource.obj: resource.asm
    5153
    52 initterm.obj: initterm.cpp wing32impl.h
     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
     61
    5362
    5463clean:
    55   $(RM) *.obj *.lib *.dll *.map *.pch
    56   $(RM) $(PDWIN32_BIN)\$(TARGET).dll
    57   $(RM) $(PDWIN32_LIB)\$(TARGET).lib
     64    $(RM) *.obj *.lib *.dll *.map *.pch \
     65        $(PDWIN32_BIN)\$(TARGET).dll $(PDWIN32_LIB)\$(TARGET).lib \
     66        resource.asm $(TARGET)exp.def
     67
Note: See TracChangeset for help on using the changeset viewer.