Changeset 4332 for trunk/tools/database


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/database
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • 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
Note: See TracChangeset for help on using the changeset viewer.