xref: /illumos-gate/usr/src/uts/common/smbsrv/Makefile (revision adee678425979226b2b55d1a0b39ce4c989382e9)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
23# Copyright 2018 Nexenta Systems, Inc.  All rights reserved.
24#
25
26include ../../../Makefile.master
27
28HDRS=	alloc.h			\
29	cp_unicode.h		\
30	cp_usascii.h		\
31	hash_table.h		\
32	mac_cifs.h		\
33	mailslot.h		\
34	mbuf.h			\
35	msgbuf.h		\
36	netbios.h		\
37	netrauth.h		\
38	nmpipes.h		\
39	ntifs.h			\
40	ntlocale.h		\
41	smb_sid.h		\
42	smb.h			\
43	smb_door.h		\
44	smb_dfs.h		\
45	smb_fsops.h		\
46	smb_idmap.h		\
47	smb_inet.h		\
48	smb_ioctl.h		\
49	smb_kproto.h		\
50	smb_kstat.h		\
51	smb_ktypes.h		\
52	smb_privilege.h		\
53	smb_share.h		\
54	smb_signing.h		\
55	smb_token.h		\
56	smb_vops.h		\
57	smb_xdr.h		\
58	smbinfo.h		\
59	smb2.h			\
60	smb2_kproto.h		\
61	string.h		\
62	svrapi.h		\
63	winsvc.h
64
65NDLHDRS= dssetup.ndl		\
66	eventlog.ndl		\
67	llsrpc.ndl		\
68	lsarpc.ndl		\
69	msgsvc.ndl		\
70	netdfs.ndl		\
71	netlogon.ndl		\
72	samrpc.ndl		\
73	security.ndl		\
74	spoolss.ndl		\
75	srvsvc.ndl		\
76	svcctl.ndl		\
77	winreg.ndl		\
78
79ROOTDIR= $(ROOT)/usr/include/smbsrv
80NDLDIR= $(ROOTDIR)/ndl
81ROOTHDRS= $(HDRS:%=$(ROOTDIR)/%) $(NDLHDRS:%=$(ROOTDIR)/ndl/%)
82CHECKHDRS= $(HDRS:%.h=%.check)
83
84$(ROOTDIR)/%: %
85	$(INS.file)
86
87$(NDLDIR)/%: ndl/%
88	$(INS.file)
89
90$(ROOTDIR) $(NDLDIR):
91	$(INS.dir)
92
93.KEEP_STATE:
94
95.PARALLEL: $(CHECKHDRS)
96
97install_h: $(ROOTDIR) $(NDLDIR) $(ROOTHDRS)
98
99check: $(CHECKHDRS)
100