]> git.proxmox.com Git - mirror_spl.git/blame - include/Makefile.am
Public Release Prep
[mirror_spl.git] / include / Makefile.am
CommitLineData
0c617c9a
BB
1# All headers are referenced by this top level Makefile.am are
2# noinst_HEADERS because they are not installed in the usual include
3# location. We do not want to be using $includedir for this.
4# Installation is handled by the custom install-data-local rule.
5noinst_HEADERS = *.h
0c617c9a
BB
6noinst_HEADERS += fs/*.h
7noinst_HEADERS += linux/*.h
8noinst_HEADERS += rpc/*.h
9noinst_HEADERS += sharefs/*.h
10noinst_HEADERS += sys/fm/*.h
11noinst_HEADERS += sys/fs/*.h
12noinst_HEADERS += sys/sysevent/*.h
13noinst_HEADERS += sys/*.h
14noinst_HEADERS += util/*.h
15noinst_HEADERS += vm/*.h
16
17install-data-local:
f4f9cd75
BB
18 destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
19 instdest=$(DESTDIR)/${prefix}/src/$$destname; \
0c617c9a
BB
20 instfiles=`find . -name '*.h'`; \
21 for instfile in $$instfiles; do \
22 $(INSTALL) -D $$instfile $$instdest/$$instfile; \
23 done