windows-code-signing-20080702
[openafs.git] / src / WINNT / afsapplib / 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 # make compiler warnings fatal
9
10 AFSDEV_AUXCDEFINES = $(AFSDEV_AUXCDEFINES) -WX
11
12 # include winnt-specific header files
13
14 AFSDEV_AUXCDEFINES = $(AFSDEV_AUXCDEFINES) -I$(DESTDIR)\include\winnt
15 AFSDEV_AUXRCDEFINES = $(AFSDEV_AUXRCDEFINES) -I$(DESTDIR)\include\winnt
16
17 # include the primary makefile
18
19 RELDIR=WINNT\afsapplib\test
20 !INCLUDE ..\..\..\config\NTMakefile.$(SYS_NAME)
21
22 ############################################################################
23 #
24 # BUILD TARGETS
25 #
26
27 EXEFILE = $(DESTDIR)\root.server\usr\afs\bin\WizTest.exe
28
29 EXEOBJS = \
30         $(OUT)\wiztest.res \
31         $(OUT)\wiztest.obj
32
33 EXELIBS = \
34         $(DESTDIR)\lib\afs\TaAfsAppLib.lib \
35         $(DESTDIR)\lib\afs\TaLocale.lib
36
37 ############################################################################
38
39 $(EXEFILE) : $(EXEOBJS) $(EXELIBS)
40         $(EXEGUILINK) comctl32.lib shell32.lib
41         $(_VC_MANIFEST_EMBED_EXE)
42         $(EXEPREP) 
43         $(CODESIGN_USERLAND)
44
45 test : $(EXEFILE)
46
47
48 mkdir:
49