2009-07-02 01:37:44 +04:00
|
|
|
include $(top_srcdir)/config/rpm.am
|
2010-09-02 23:12:39 +04:00
|
|
|
include $(top_srcdir)/config/deb.am
|
|
|
|
include $(top_srcdir)/config/tgz.am
|
2011-12-07 05:33:51 +04:00
|
|
|
include $(top_srcdir)/config/arch.am
|
2009-07-02 01:37:44 +04:00
|
|
|
|
2012-12-17 21:43:45 +04:00
|
|
|
SUBDIRS =
|
2009-07-02 01:37:44 +04:00
|
|
|
if CONFIG_USER
|
2012-12-17 21:43:45 +04:00
|
|
|
SUBDIRS += lib cmd scripts
|
2009-07-02 01:37:44 +04:00
|
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
2012-12-17 21:43:45 +04:00
|
|
|
SUBDIRS += module include
|
2009-07-02 01:37:44 +04:00
|
|
|
endif
|
2009-03-05 20:08:07 +03:00
|
|
|
|
2010-09-03 00:15:20 +04:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
2010-07-27 21:19:44 +04:00
|
|
|
EXTRA_DIST = autogen.sh spl.spec.in spl-modules.spec.in META DISCLAIMER
|
|
|
|
EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
|
2012-08-23 20:46:38 +04:00
|
|
|
EXTRA_DIST += dkms.postinst copy-builtin
|
2012-07-12 02:47:56 +04:00
|
|
|
noinst_HEADERS = spl_config.h spl.release
|
2008-02-26 23:36:04 +03:00
|
|
|
|
2009-03-05 20:08:07 +03:00
|
|
|
distclean-local::
|
|
|
|
-$(RM) -R autom4te*.cache
|
|
|
|
-find . \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
|
|
|
|
-o -name .pc -o -name .hg -o -name .git \) -prune -o \
|
|
|
|
\( -name '*.orig' -o -name '*.rej' -o -name '*~' \
|
|
|
|
-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
|
|
|
|
-o -name '.*.rej' -o -name 'aclocal.m4' -o -size 0 \
|
|
|
|
-o -name '*%' -o -name '.*.cmd' -o -name 'core' \
|
2009-11-21 03:01:00 +03:00
|
|
|
-o -name 'Makefile' -o -name '$(LINUX_SYMBOLS)' \
|
|
|
|
-o -name '*.order' -o -name '*.markers' \) \
|
2009-03-05 20:08:07 +03:00
|
|
|
-type f -print | xargs $(RM)
|
|
|
|
|
2009-07-02 01:37:44 +04:00
|
|
|
if CONFIG_KERNEL
|
2009-03-05 20:08:07 +03:00
|
|
|
install-data-local:
|
2012-01-18 04:14:35 +04:00
|
|
|
release=$(SPL_META_VERSION)-$(SPL_META_RELEASE); \
|
|
|
|
instdest=$(DESTDIR)/usr/src/spl-$$release/$(LINUX_VERSION); \
|
2009-06-16 22:34:28 +04:00
|
|
|
for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \
|
2013-02-09 01:54:24 +04:00
|
|
|
$(INSTALL) -m 644 -D $$instfile $$instdest/$$instfile; \
|
2009-06-16 21:44:59 +04:00
|
|
|
done
|
2009-07-02 01:37:44 +04:00
|
|
|
endif
|
2009-03-05 20:08:07 +03:00
|
|
|
|
|
|
|
ctags:
|
|
|
|
$(RM) $(top_srcdir)/tags
|
|
|
|
find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
|
|
|
|
|
|
|
|
etags:
|
|
|
|
$(RM) $(top_srcdir)/TAGS
|
|
|
|
find $(top_srcdir) -name .pc -prune -o -name '*.[hc]' | xargs etags -a
|
|
|
|
|
|
|
|
tags: ctags etags
|
|
|
|
|
2010-07-27 21:19:44 +04:00
|
|
|
pkg: @DEFAULT_PACKAGE@
|
|
|
|
pkg-modules: @DEFAULT_PACKAGE@-modules
|
|
|
|
pkg-utils: @DEFAULT_PACKAGE@-utils
|