72701ab5af1b055e8d15a7b025b557cb012fb60e
[openafs.git] / src / cmd / test / NTMakefile
1 # Copyright 2000, International Business Machines Corporation and others.
2 # All Rights Reserved.
3
4 # This software has been released under the terms of the IBM Public
5 # License.  For details, see the LICENSE file in the top-level source
6 # directory or online at http://www.openafs.org/dl/license10.html
7
8 !INCLUDE ..\..\config\NTMakefile.$(SYS_NAME)
9 !INCLUDE ..\..\config\NTMakefile.version
10
11
12 # test exe's
13 EXELIBS =\
14         $(DESTDIR)\lib\afs\afscmd.lib \
15         $(DESTDIR)\lib\afs\afsutil.lib \
16         $(DESTDIR)\lib\afs\afscom_err.lib
17
18 # build itest.exe
19 ITEST_EXEOBJS =\
20         itest.obj
21
22 ITEST_EXEFILE = itest.exe
23
24 $(ITEST_EXEFILE): $(ITEST_EXEOBJS) 
25         $(EXECONLINK) $(EXELIBS)  
26         $(EXEPREP) 
27
28 #build ctest.exe
29 CTEST_EXEOBJS =\
30         ctest.obj
31
32 CTEST_EXEFILE = ctest.exe
33
34 $(CTEST_EXEFILE): $(CTEST_EXEOBJS) 
35         $(EXECONLINK) $(EXELIBS)  
36         $(EXEPREP) 
37
38 # build dtest.exe
39 DTEST_EXEOBJS =\
40         dtest.obj
41
42 DTEST_EXEFILE = dtest.exe
43
44 $(DTEST_EXEFILE): $(DTEST_EXEOBJS) 
45         $(EXECONLINK) $(EXELIBS)  
46         $(EXEPREP) 
47
48 all: test
49
50 test tests: $(CTEST_EXEFILE) $(ITEST_EXEFILE) $(DTEST_EXEFILE)
51
52 clean::
53         $(DEL) ctest.exe dtest.exe itest.exe