Changeset 4332 for trunk/tools/database
- Timestamp:
- Sep 28, 2000, 5:06:28 AM (25 years ago)
- Location:
- trunk/tools/database
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/database/Makefile
r3848 r4332 1 # $Id: Makefile,v 1.1 3 2000-07-18 17:56:51bird Exp $1 # $Id: Makefile,v 1.14 2000-09-28 03:06:27 bird Exp $ 2 2 3 3 # … … 117 117 cd .. 118 118 119 !ifndef NODEP120 !include .depend121 !endif122 119 123 120 … … 131 128 cd .. 132 129 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 133 147 force: 134 148 @$(ECHO) ... -
trunk/tools/database/gd/Makefile
r2714 r4332 30 30 $(DEPEND) *.c *.cpp *.h *.asm *.inc -Objo *.c *.cpp -objgobj *.c *.cpp 31 31 32 !ifndef NODEP33 !include .depend34 !endif35 36 37 32 clean: 38 33 @nmake /nologo -f makefile.icc clean … … 40 35 @nmake /nologo OMF=1 -f makefile.gcc clean 41 36 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 74 74 @nmake /nologo -f makefile NODEP=1 dep 75 75 76 !ifndef NODEP77 !include .depend78 !endif79 80 76 clean: 81 77 -@$(RM) *.$(O) *.$(A) *.exe *.map 82 78 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 41 41 @nmake /nologo -f makefile NODEP=1 dep 42 42 43 !ifndef NODEP44 !include .depend45 !endif46 47 43 clean: 48 44 @$(RM) *.obj *.exe *.map gdicc.lib cset*.pch 49 45 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.