Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / libacl / 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=libacl
9 !INCLUDE ..\config\NTMakefile.$(SYS_NAME)
10 !INCLUDE ..\config\NTMakefile.version
11
12 ############################################################################
13 # Install inc files
14
15 INCFILEDIR = $(DESTDIR)\include\afs
16
17 INCFILES =\
18 $(INCFILEDIR)\acl.h \
19 $(INCFILEDIR)\prs_fs.h
20
21
22 ############################################################################
23 # build afsacl.lib
24
25 LIBFILE = $(DESTDIR)\lib\afs\afsacl.lib
26
27 LIBOBJS =\
28 $(OUT)\aclprocs.obj \
29 $(OUT)\netprocs.obj \
30 $(OUT)\AFS_component_version_number.obj
31
32 $(LIBFILE): $(LIBOBJS)
33 $(LIBARCH)
34
35
36 ############################################################################
37 # install afsacl.lib
38
39 install_headers: $(INCFILES)
40
41 install: $(LIBFILE)
42
43 clean::
44 $(DEL) $(INCFILES)
45
46 ############################################################################
47 # Auxiliary build targets not built by default; e.g. test programs
48
49 test:
50 $(CD) test
51 $(MAKECMD) /f NTMakefile acltest
52
53
54 mkdir:
55