Changeset 4332 for trunk/tools


Ignore:
Timestamp:
Sep 28, 2000, 5:06:28 AM (25 years ago)
Author:
bird
Message:

Corrected inclusion of .depend and for some defined PDWIN32_INCLUDE.

Location:
trunk/tools
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/SDF/makefile

    r2714 r4332  
    1 # $Id: makefile,v 1.1 2000-02-09 23:49:29 bird Exp $
     1# $Id: makefile,v 1.2 2000-09-28 03:06:27 bird Exp $
    22
    33#
     
    4141        *.c *.cpp
    4242
    43 !ifndef NODEP
    44 !include .depend
    45 !endif
    46 
    47 
    4843clean:
    4944    @$(RM) *.obj *.exe *.map *.pch *.log
    5045
     46
     47#
     48# Include the .depend file.
     49#   If the depend file don't exists we'll complain about it.
     50#
     51!ifndef NODEP
     52!   if [$(EXISTS) .depend] == 0
     53!       include .depend
     54!   else
     55!       if [$(ECHO) .depend doesn't exist]
     56!       endif
     57!   endif
     58!endif
     59
  • trunk/tools/database/Makefile

    r3848 r4332  
    1 # $Id: Makefile,v 1.13 2000-07-18 17:56:51 bird Exp $
     1# $Id: Makefile,v 1.14 2000-09-28 03:06:27 bird Exp $
    22
    33#
     
    117117    cd ..
    118118
    119 !ifndef NODEP
    120 !include .depend
    121 !endif
    122119
    123120
     
    131128   cd ..
    132129
     130
     131
     132#
     133# Include the .depend file.
     134#   If the depend file don't exists we'll complain about it.
     135#
     136!ifndef NODEP
     137!   if [$(EXISTS) .depend] == 0
     138!       include .depend
     139!   else
     140!       if [$(ECHO) .depend doesn't exist]
     141!       endif
     142!   endif
     143!endif
     144
     145
     146
    133147force:
    134148    @$(ECHO) ...
  • trunk/tools/database/gd/Makefile

    r2714 r4332  
    3030    $(DEPEND) *.c *.cpp *.h *.asm *.inc -Objo *.c *.cpp -objgobj *.c *.cpp
    3131
    32 !ifndef NODEP
    33 !include .depend
    34 !endif
    35 
    36 
    3732clean:
    3833   @nmake /nologo -f makefile.icc clean
     
    4035   @nmake /nologo OMF=1 -f makefile.gcc clean
    4136
     37
     38#
     39# Include the .depend file.
     40#   If the depend file don't exists we'll complain about it.
     41#
     42!ifndef NODEP
     43!   if [$(EXISTS) .depend] == 0
     44!       include .depend
     45!   else
     46!       if [$(ECHO) .depend doesn't exist]
     47!       endif
     48!   endif
     49!endif
     50
  • trunk/tools/database/gd/Makefile.gcc

    r2714 r4332  
    7474    @nmake /nologo -f makefile NODEP=1 dep
    7575
    76 !ifndef NODEP
    77 !include .depend
    78 !endif
    79 
    8076clean:
    8177    -@$(RM) *.$(O) *.$(A) *.exe *.map
    8278
     79#
     80# Include the .depend file.
     81#   If the depend file don't exists we'll complain about it.
     82#
     83!ifndef NODEP
     84!   if [$(EXISTS) .depend] == 0
     85!       include .depend
     86!   else
     87!       if [$(ECHO) .depend doesn't exist]
     88!       endif
     89!   endif
     90!endif
     91
  • trunk/tools/database/gd/Makefile.icc

    r2714 r4332  
    4141    @nmake /nologo -f makefile NODEP=1 dep
    4242
    43 !ifndef NODEP
    44 !include .depend
    45 !endif
    46 
    4743clean:
    4844    @$(RM) *.obj *.exe *.map gdicc.lib cset*.pch
    4945
     46#
     47# Include the .depend file.
     48#   If the depend file don't exists we'll complain about it.
     49#
     50!ifndef NODEP
     51!   if [$(EXISTS) .depend] == 0
     52!       include .depend
     53!   else
     54!       if [$(ECHO) .depend doesn't exist]
     55!       endif
     56!   endif
     57!endif
     58
  • trunk/tools/makefile

    r3535 r4332  
    1 # $Id: makefile,v 1.11 2000-05-13 17:15:24 bird Exp $
     1# $Id: makefile,v 1.12 2000-09-28 03:06:26 bird Exp $
    22
    33#
     
    1616#
    1717#
    18 !include ..\include\pdwin32.tools
     18PDWIN32_INCLUDE = ..\include
     19!include $(PDWIN32_INCLUDE)\pdwin32.tools
    1920
    2021!ifdef DEBUG
  • trunk/tools/wrc/makefile.os2

    r3476 r4332  
    1 # $Id: makefile.os2,v 1.10 2000-05-02 14:33:04 bird Exp $
     1# $Id: makefile.os2,v 1.11 2000-09-28 03:06:28 bird Exp $
    22
    33
     
    5757        *.h *.asm *.inc  $(PDWIN32_INCLUDE)\*.h *.c *.cpp -objo *.c *.cpp
    5858
    59 !ifndef NODEP
    60 !include .depend
    61 !endif
    62 
    6359
    6460clean:
     
    6662#    $(RM) y.tab.c y.tab.h lexyy.c *.o *.exe
    6763
     64#
     65# Include the .depend file.
     66#   If the depend file don't exists we'll complain about it.
     67#
     68!ifndef NODEP
     69!   if [$(EXISTS) .depend] == 0
     70!       include .depend
     71!   else
     72!       if [$(ECHO) .depend doesn't exist]
     73!       endif
     74!   endif
     75!endif
     76
Note: See TracChangeset for help on using the changeset viewer.