Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / rxdebug / 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 RELDIR=rxdebug
9 !include ..\config\NTMakefile.$(SYS_NAME)
10
11 !include ..\config\NTMakefile.version
12
13 # Additional debugging flag for RX.
14 AFSDEV_AUXCDEFINES = -DRXDEBUG
15
16 # build rxdebug.
17 RXDEBUG = $(DESTDIR)\etc\rxdebug.exe
18 RXDOBJS = $(OUT)\rxdebug.obj \
19 $(OUT)\AFS_component_version_number.obj \
20 $(OUT)\rxdebug.res
21
22 LIBDIR = $(DESTDIR)\lib
23 RXDLIBS = $(LIBDIR)\afs\afscmd.lib \
24 $(LIBDIR)\afsrx.lib \
25 $(LIBDIR)\afshcrypto.lib \
26 $(LIBDIR)\afslwp.lib \
27 $(LIBDIR)\afs\afsutil.lib \
28 $(LIBDIR)\afs\afsreg.lib \
29 $(LIBDIR)\afsroken.lib \
30 $(LIBDIR)\opr.lib
31
32 $(OUT)\rxdebug.res: rxdebug.rc $(VERSFILE).h
33 $(RC) /Fo$*.RES $(*F).rc
34
35 $(OUT)\rxdebug.obj: rxdebug.c
36
37 $(RXDEBUG): $(RXDOBJS) $(RXDLIBS)
38 $(EXECONLINK) iphlpapi.lib
39 $(_VC_MANIFEST_EMBED_EXE)
40 $(EXEPREP)
41 $(CODESIGN_USERLAND)
42 $(SYMSTORE_IMPORT)
43
44 install: $(RXDEBUG)
45
46 clean::
47 $(DEL) $(RXDOBJS) $(RXDEBUG)
48
49 mkdir:
50