1 #
2 #ident "%Z%%M% %I% %E% SMI"
3 #
4 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
5 # Use is subject to license terms.
6 #
7 # uts/common/inet/ipf/netinet/Makefile
8 #
9 # include global definitions
10 include ../../../../../Makefile.master
11
12 HDRS= ipl.h ip_compat.h ip_fil.h ip_nat.h ip_proxy.h ip_state.h \
13 ip_frag.h ip_auth.h ip_lookup.h ip_pool.h ip_htable.h ipf_stack.h
14
15 ROOTDIRS= $(ROOT)/usr/include/netinet
16
17 ROOTHDRS= $(HDRS:%=$(ROOT)/usr/include/netinet/%)
18
19 CHECKHDRS= $(HDRS:%.h=%.check)
20
21 $(ROOTDIRS)/%: %
22 $(INS.file)
23
24 .KEEP_STATE:
25
26 .PARALLEL: $(CHECKHDRS)
27
28 install_h: $(ROOTDIRS) $(ROOTHDRS)
29
30 $(ROOTDIRS):
31 $(INS.dir)
32
33 check:
|
1 #
2 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
3 # Use is subject to license terms.
4 # Copyright 2019 Joyent, Inc.
5 #
6 # uts/common/inet/ipf/netinet/Makefile
7 #
8 # include global definitions
9 include ../../../../../Makefile.master
10
11 HDRS= ipl.h ip_compat.h ip_fil.h ip_nat.h ip_proxy.h ip_state.h ip_frag.h \
12 ip_auth.h ip_lookup.h ip_pool.h ip_htable.h ipf_stack.h ipf_cfw.h
13
14 ROOTDIRS= $(ROOT)/usr/include/netinet
15
16 ROOTHDRS= $(HDRS:%=$(ROOT)/usr/include/netinet/%)
17
18 CHECKHDRS= $(HDRS:%.h=%.check)
19
20 $(ROOTDIRS)/%: %
21 $(INS.file)
22
23 .KEEP_STATE:
24
25 .PARALLEL: $(CHECKHDRS)
26
27 install_h: $(ROOTDIRS) $(ROOTHDRS)
28
29 $(ROOTDIRS):
30 $(INS.dir)
31
32 check:
|