home *** CD-ROM | disk | FTP | other *** search
- #*******************************************************************************
- #* SAMPLE PROJECT: MAKE06D *
- #* *
- #* COPYRIGHT: *
- #* ---------- *
- #* Copyright (C) International Business Machines Corp., 1992,1993. *
- #* *
- #* DISCLAIMER OF WARRANTIES: *
- #* ------------------------- *
- #* The following [enclosed] code is sample code created by IBM *
- #* Corporation. This sample code is not part of any standard IBM product *
- #* and is provided to you solely for the purpose of assisting you in the *
- #* development of your applications. The code is provided "AS IS", *
- #* without warranty of any kind. IBM shall not be liable for any damages *
- #* arising out of your use of the sample code, even if they have been *
- #* advised of the possibility of such damages. *
- #* *
- #*******************************************************************************
-
- .SUFFIXES: .c .cpp
-
- all: AUTHORS1.exe AUTHORS2.exe
-
- AUTHORS1.EXE: \
- DATNTREE.OBJ \
- TREEDATA.OBJ \
- TREELINK.OBJ \
- TREENODE.OBJ \
- AUTHORS1.OBJ \
- MAKE06D
- @REM @<<AUTHORS1.@0
- TREEDATA.OBJ +
- TREELINK.OBJ +
- TREENODE.OBJ +
- AUTHORS1.OBJ
- AUTHORS1.EXE
-
-
- ;
- <<
- icc.EXE /Tdp authors1.obj datntree.obj treedata.obj treelink.obj treenode.obj
-
- AUTHORS2.EXE: \
- TREEDATA.OBJ \
- TREELINK.OBJ \
- TREENODE.OBJ \
- AUTHORS2.OBJ \
- MAKE06D
- @REM @<<AUTHORS2.@0
- TREEDATA.OBJ +
- TREELINK.OBJ +
- TREENODE.OBJ +
- AUTHORS2.OBJ
- AUTHORS2.EXE
-
-
- ;
- <<
- icc.EXE /Tdp authors2.obj treedata.obj treelink.obj treenode.obj
-
- {.}.c.obj:
- ICC.EXE /Ft+ /Gd+ /N10 /C .\$*.c
-
- {.}.cpp.obj:
- ICC.EXE /Ft+ /Gd+ /N10 /C .\$*.cpp
-
- TREEDATA.OBJ: TREEDATA.CPP \
- {.;$(INCLUDE);}treedata.hpp \
- MAKE06D
-
- treelink.OBJ: treelink.cpp \
- {.;$(INCLUDE);}treelink.hpp \
- MAKE06D
-
- TREENODE.OBJ: TREENODE.CPP \
- {.;$(INCLUDE);}treenode.hpp \
- {.;$(INCLUDE);}treedata.hpp \
- {.;$(INCLUDE);}treelink.hpp \
- MAKE06D
-
- AUTHORS1.OBJ: AUTHORS1.CPP \
- {.;$(INCLUDE);}datntree.hpp \
- {.;$(INCLUDE);}treenode.hpp \
- {.;$(INCLUDE);}treedata.hpp \
- {.;$(INCLUDE);}treelink.hpp \
- MAKE06D
-
- AUTHORS2.OBJ: AUTHORS2.CPP \
- {.;$(INCLUDE);}gentree.hpp \
- {.;$(INCLUDE);}treenode.hpp \
- {.;$(INCLUDE);}treedata.hpp \
- {.;$(INCLUDE);}treelink.hpp \
- MAKE06D
-
- clean:
- -Del TREELINK.obj TREENODE.obj TREEDATA.obj DATNTREE.obj
- -Del AUTHORS1.obj AUTHORS2.obj
- -Del AUTHORS1.exe AUTHORS2.exe
- -Del tempinc\GENTREE.cpp tempinc\GENTREE.obj
- -Rd tempinc