Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / comerr / test / NTMakefile
1 # Copyright (C) 1998 Transarc Corporation. All rights reserved.
2 #
3
4 RELDIR=comerr\test
5 !INCLUDE ..\..\config\NTMakefile.$(SYS_NAME)
6 !INCLUDE ..\..\config\NTMakefile.version
7
8 EXEFILE = $(OUT)\comerr_test.exe
9
10 EXEOBJS =\
11 $(OUT)\test1.obj \
12 $(OUT)\test2.obj \
13 $(OUT)\test.obj
14
15 EXELIBS =\
16 $(DESTDIR)\lib\afs\afsutil.lib \
17 $(DESTDIR)\lib\afs\afscom_err.lib
18
19 $(EXEFILE): $(EXEOBJS) # dependents built from predefined inference rules
20 $(EXECONLINK) $(EXELIBS)
21 $(_VC_MANIFEST_EMBED_EXE)
22 $(EXEPREP)
23 $(CODESIGN_USERLAND)
24 $(SYMSTORE_IMPORT)
25
26 test1.c test1.h: test1.et
27 $(DEL) test1.c test1.h
28 $(COMPILE_ET) test1
29
30 test2.c test2.h: test2.et
31 $(DEL) test2.c test2.h
32 $(COMPILE_ET) test2
33
34 tests: $(EXEFILE)
35
36 clean::
37 $(DEL) test1.c test1.h test2.c test2.h
38
39
40 mkdir:
41