Import Debian changes 1.8.5-1
[hcoop/debian/openafs.git] / src / usd / NTMakefile
CommitLineData
805e021f
CE
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
8RELDIR=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
17INCFILEDIR = $(DESTDIR)\include\afs
18
19INCFILES = \
20 $(INCFILEDIR)\usd.h
21
22
23############################################################################
24# build afsusd.lib
25
26LIBFILE = $(DESTDIR)\lib\afs\afsusd.lib
27
28LIBOBJS =\
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
38install: $(INCFILES) $(LIBFILE)
39
40clean::
41 $(DEL) $(LIBFILE)
42
43test:
44 $(CD) test
45 $(MAKECMD) /fNTMakefile test
46 $(CD) ..
47
48mkdir:
49