Changeset 4804 for trunk/tools
- Timestamp:
- Dec 16, 2000, 9:10:09 PM (25 years ago)
- Location:
- trunk/tools
- Files:
-
- 8 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/common/common.mak
r4712 r4804 1 # $Id: common.mak,v 1. 2 2000-12-02 23:26:57 bird Exp $1 # $Id: common.mak,v 1.3 2000-12-16 20:10:07 bird Exp $ 2 2 3 3 # … … 19 19 # 20 20 !include ../../makefile.inc 21 22 23 # 24 # We use exception, so we'll have to enable them. 25 # 26 !ifndef WAT 27 CXXFLAGS = $(CXXFLAGS) $(CXXEXCEPTIONS) 28 !else 29 CXXFLAGS += $(CXXEXCEPTIONS) 30 !endif 21 31 22 32 -
trunk/tools/common/common.mk
r4712 r4804 1 # $Id: common.mk,v 1. 4 2000-12-02 23:26:57 bird Exp $1 # $Id: common.mk,v 1.5 2000-12-16 20:10:07 bird Exp $ 2 2 # 3 3 # Common definitions for tools. … … 11 11 # Project Odin Software License can be found in LICENSE.TXT 12 12 # 13 14 15 # 16 # We use exception, so we'll have to enable them. 17 # 18 !ifndef WAT 19 CXXFLAGS = $(CXXFLAGS) $(CXXEXCEPTIONS) 20 !else 21 CXXFLAGS += $(CXXEXCEPTIONS) 22 !endif 13 23 14 24 -
trunk/tools/common/kFileDef.cpp
r4426 r4804 9 9 * Defined Constants * 10 10 *******************************************************************************/ 11 #define StringCase(psz, pszMatch) (strnicmp(psz, pszMatch, sizeof(pszMatch)-1) == 0) 11 #define StringCase(psz, pszMatch) (strnicmp(psz, pszMatch, sizeof(pszMatch)-1) == 0 \ 12 && ( psz[sizeof(pszMatch)-1] == '\0' \ 13 || psz[sizeof(pszMatch)-1] == ' ' \ 14 || psz[sizeof(pszMatch)-1] == '\n' \ 15 || psz[sizeof(pszMatch)-1] == '\r' \ 16 || psz[sizeof(pszMatch)-1] == '\t' \ 17 ) \ 18 ) 12 19 13 20 /******************************************************************************* -
trunk/tools/common/makefile
r4712 r4804 1 # $Id: makefile,v 1.1 0 2000-12-02 23:26:58bird Exp $1 # $Id: makefile,v 1.11 2000-12-16 20:10:07 bird Exp $ 2 2 3 3 # … … 40 40 # 41 41 needed: $(OBJDIR)\common.lib \ 42 $(ODIN32_TOOLS)\kDef2Wat.exe 43 42 $(ODIN32_TOOLS)\kDef2Wat.exe \ 43 $(SYMBOLIC) 44 44 45 45 # … … 70 70 # Clean rule. 71 71 # 72 clean: 72 clean: $(SYMBOLIC) 73 73 $(MAKE_CMD) -f common.mak clean 74 74 $(MAKE_CMD) -f kDef2Wat.mak clean … … 79 79 # Dep rule - makes depenencies for C, C++ and Asm files. 80 80 # 81 dep: 81 dep: $(SYMBOLIC) 82 82 $(DEPEND) $(CINCLUDES) *.c *.cpp *.h *.asm *.inc \ 83 83 *.rc *.dlg $(ODIN32_INCLUDE)\*.h -robj *.orc \ … … 89 89 # A simple hack to make nmake process the target. 90 90 # 91 force: 91 force: $(SYMBOLIC) 92 92 -@echo ... 93 93 … … 96 96 # Lib rule - dummy rule 97 97 # 98 lib: 98 lib: $(SYMBOLIC) 99 99 -
trunk/tools/database/Makefile
r4712 r4804 1 # $Id: Makefile,v 1.1 5 2000-12-02 23:26:58bird Exp $1 # $Id: Makefile,v 1.16 2000-12-16 20:10:07 bird Exp $ 2 2 3 3 # … … 114 114 # 115 115 clean: 116 $(RM) *.obj *.lib *.o *.a *.dll *.exe *.pch *.log *.map *.html 116 $(RM) *.obj *.lib *.o *.a *.dll *.exe *.pch *.log *.map *.html 117 !ifdef ODIN32_BIN 118 $(RM) $(ODIN32_BIN)\StateUpd.exe $(ODIN32_BIN)\APIImport.exe $(ODIN32_BIN)\kHTMLPC.exe 119 !endif 117 120 $(DODIRS) "gd" $(MAKE_CMD) clean 118 121
Note:
See TracChangeset
for help on using the changeset viewer.