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