Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / usd / 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=usd
9 !INCLUDE ..\config\NTMakefile.$(SYS_NAME)
10 !IF (EXIST(..\config\NTMakefile.version))
11 !include ..\config\NTMakefile.version
12 !ENDIF
13
14 ############################################################################
15 # Definitions for installing header files
16
17 INCFILEDIR = $(DESTDIR)\include\afs
18
19 INCFILES = \
20 $(INCFILEDIR)\usd.h
21
22
23 ############################################################################
24 # build afsusd.lib
25
26 LIBFILE = $(DESTDIR)\lib\afs\afsusd.lib
27
28 LIBOBJS =\
29 $(OUT)\usd_nt.obj \
30 $(OUT)\AFS_component_version_number.obj
31
32 $(LIBFILE): $(LIBOBJS)
33 $(LIBARCH)
34
35 ############################################################################
36 # make and install
37
38 install: $(INCFILES) $(LIBFILE)
39
40 clean::
41 $(DEL) $(LIBFILE)
42
43 test:
44 $(CD) test
45 $(MAKECMD) /fNTMakefile test
46 $(CD) ..
47
48 mkdir:
49