2009-07-02 01:37:44 +04:00
|
|
|
include $(top_srcdir)/config/rpm.am
|
|
|
|
|
|
|
|
if CONFIG_USER
|
|
|
|
USER_DIR = lib cmd scripts
|
|
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
|
|
|
KERNEL_DIR = module include
|
|
|
|
endif
|
|
|
|
SUBDIRS = $(USER_DIR) $(KERNEL_DIR)
|
2009-03-05 20:08:07 +03:00
|
|
|
|
2008-02-26 23:36:04 +03:00
|
|
|
AUTOMAKE_OPTIONS = foreign dist-zip
|
2009-03-10 20:57:52 +03:00
|
|
|
EXTRA_DIST = autogen.sh spl.spec.in META DISCLAIMER
|
2009-03-18 00:55:59 +03:00
|
|
|
noinst_HEADERS = spl_config.h spl_unconfig.h
|
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-06-16 22:34:28 +04:00
|
|
|
-o -name 'Makefile' -o -name '$(LINUX_SYMBOLS)' \) \
|
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:
|
2009-06-27 03:30:44 +04:00
|
|
|
destname=spl-$(SPL_META_VERSION)/$(LINUX_VERSION); \
|
|
|
|
instdest=$(DESTDIR)/${prefix}/src/$$destname; \
|
2009-06-30 03:41:21 +04:00
|
|
|
echo "${SPL_META_VERSION}" >$$instdest/spl.release; \
|
2009-06-16 22:34:28 +04:00
|
|
|
for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \
|
2009-06-16 21:44:59 +04:00
|
|
|
$(INSTALL) -D $$instfile $$instdest/$$instfile; \
|
|
|
|
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
|
|
|
|
|
2009-07-02 01:37:44 +04:00
|
|
|
srpm-modules:
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}-modules" srpm-common
|
|
|
|
|
|
|
|
srpm-utils:
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}" srpm-common
|
|
|
|
|
|
|
|
srpm: srpm-modules srpm-utils
|
|
|
|
|
|
|
|
rpm-modules: srpm-modules
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}-modules" rpm-common
|
|
|
|
|
|
|
|
rpm-utils: srpm-utils
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) pkg="${PACKAGE}" rpm-common
|
|
|
|
|
|
|
|
rpm-modules: srpm-modules
|
|
|
|
|
|
|
|
rpm-utils: srpm-utils
|
|
|
|
|
|
|
|
rpm: rpm-modules rpm-utils
|