2013-03-30 06:33:09 +04:00
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I config
|
|
|
|
|
2014-06-11 05:57:48 +04:00
|
|
|
include config/rpm.am
|
|
|
|
include config/deb.am
|
|
|
|
include config/tgz.am
|
2009-07-02 01:37:44 +04:00
|
|
|
|
2013-02-08 23:02:08 +04:00
|
|
|
SUBDIRS = include rpm
|
2009-07-02 01:37:44 +04:00
|
|
|
if CONFIG_USER
|
2013-03-15 23:25:32 +04:00
|
|
|
SUBDIRS += lib cmd man scripts
|
2009-07-02 01:37:44 +04:00
|
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
2013-02-14 02:01:00 +04:00
|
|
|
SUBDIRS += module
|
2013-02-21 01:58:05 +04:00
|
|
|
|
2014-08-29 19:12:47 +04:00
|
|
|
extradir = @prefix@/src/spl-$(VERSION)
|
2013-02-21 01:58:05 +04:00
|
|
|
extra_HEADERS = spl.release.in spl_config.h.in
|
|
|
|
|
2014-08-29 19:12:47 +04:00
|
|
|
kerneldir = @prefix@/src/spl-$(VERSION)/$(LINUX_VERSION)
|
2013-02-21 01:58:05 +04:00
|
|
|
nodist_kernel_HEADERS = spl.release spl_config.h module/$(LINUX_SYMBOLS)
|
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
|
2013-02-08 23:02:08 +04:00
|
|
|
EXTRA_DIST = autogen.sh META DISCLAIMER copy-builtin
|
2010-07-27 21:19:44 +04:00
|
|
|
EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
|
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)
|
|
|
|
|
2013-03-22 22:27:20 +04:00
|
|
|
dist-hook:
|
|
|
|
sed -i 's/Release:[[:print:]]*/Release: $(RELEASE)/' \
|
|
|
|
$(distdir)/META
|
|
|
|
|
2009-03-05 20:08:07 +03:00
|
|
|
ctags:
|
2014-06-11 05:57:48 +04:00
|
|
|
$(RM) tags
|
2009-03-05 20:08:07 +03:00
|
|
|
find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
|
|
|
|
|
|
|
|
etags:
|
2014-06-11 05:57:48 +04:00
|
|
|
$(RM) TAGS
|
2009-03-05 20:08:07 +03:00
|
|
|
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@
|
2013-02-08 23:02:08 +04:00
|
|
|
pkg-kmod: @DEFAULT_PACKAGE@-kmod
|
2010-07-27 21:19:44 +04:00
|
|
|
pkg-utils: @DEFAULT_PACKAGE@-utils
|