d7c533c830a36ecca96a83a6b5035023649d40ee
[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 install9x: install
44
45 clean::
46         $(DEL) $(INCFILES)
47
48 ############################################################################
49 # Auxiliary build targets not built by default; e.g. test programs
50
51 test:
52         $(CD) test
53         $(MAKECMD) /f NTMakefile acltest
54
55
56 mkdir:
57