Changeset 4332 for trunk/tools
- Timestamp:
- Sep 28, 2000, 5:06:28 AM (25 years ago)
- 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:29bird Exp $1 # $Id: makefile,v 1.2 2000-09-28 03:06:27 bird Exp $ 2 2 3 3 # … … 41 41 *.c *.cpp 42 42 43 !ifndef NODEP44 !include .depend45 !endif46 47 48 43 clean: 49 44 @$(RM) *.obj *.exe *.map *.pch *.log 50 45 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.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 -
trunk/tools/makefile
r3535 r4332 1 # $Id: makefile,v 1.1 1 2000-05-13 17:15:24bird Exp $1 # $Id: makefile,v 1.12 2000-09-28 03:06:26 bird Exp $ 2 2 3 3 # … … 16 16 # 17 17 # 18 !include ..\include\pdwin32.tools 18 PDWIN32_INCLUDE = ..\include 19 !include $(PDWIN32_INCLUDE)\pdwin32.tools 19 20 20 21 !ifdef DEBUG -
trunk/tools/wrc/makefile.os2
r3476 r4332 1 # $Id: makefile.os2,v 1.1 0 2000-05-02 14:33:04bird Exp $1 # $Id: makefile.os2,v 1.11 2000-09-28 03:06:28 bird Exp $ 2 2 3 3 … … 57 57 *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h *.c *.cpp -objo *.c *.cpp 58 58 59 !ifndef NODEP60 !include .depend61 !endif62 63 59 64 60 clean: … … 66 62 # $(RM) y.tab.c y.tab.h lexyy.c *.o *.exe 67 63 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.