2010-08-26 18:22:58 +00:00
|
|
|
include $(top_srcdir)/config/rpm.am
|
2010-09-04 20:26:23 +00:00
|
|
|
include $(top_srcdir)/config/deb.am
|
|
|
|
include $(top_srcdir)/config/tgz.am
|
2011-12-08 01:02:42 +00:00
|
|
|
include $(top_srcdir)/config/arch.am
|
2010-08-26 18:22:58 +00:00
|
|
|
|
|
|
|
if CONFIG_USER
|
2011-08-05 19:22:58 +00:00
|
|
|
USER_DIR = dracut udev etc man scripts lib cmd
|
2010-08-26 18:22:58 +00:00
|
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
|
|
|
KERNEL_DIR = module
|
|
|
|
endif
|
2010-09-04 20:26:23 +00:00
|
|
|
SUBDIRS = $(USER_DIR) $(KERNEL_DIR) include
|
2010-08-26 18:22:58 +00:00
|
|
|
|
2010-09-02 20:18:17 +00:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
2010-08-26 18:22:58 +00:00
|
|
|
EXTRA_DIST = autogen.sh zfs.spec.in zfs-modules.spec.in
|
|
|
|
EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
|
2010-09-01 19:54:51 +00:00
|
|
|
EXTRA_DIST += META DISCLAIMER COPYRIGHT README.markdown
|
2010-08-26 18:22:58 +00:00
|
|
|
EXTRA_DIST += OPENSOLARIS.LICENSE ZFS.RELEASE
|
|
|
|
|
|
|
|
noinst_HEADERS = zfs_config.h
|
|
|
|
|
|
|
|
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' \
|
2010-09-01 19:54:51 +00:00
|
|
|
-o -name '.*.rej' -o -name '.script-config' -o -size 0 \
|
2010-08-26 18:22:58 +00:00
|
|
|
-o -name '*%' -o -name '.*.cmd' -o -name 'core' \
|
|
|
|
-o -name 'Makefile' -o -name 'Module.symvers' \
|
2010-09-01 19:54:51 +00:00
|
|
|
-o -name '*.order' -o -name '*.markers' \) \
|
2010-08-26 18:22:58 +00:00
|
|
|
-type f -print | xargs $(RM)
|
|
|
|
|
|
|
|
if CONFIG_KERNEL
|
|
|
|
install-data-local:
|
|
|
|
destname=zfs-$(ZFS_META_VERSION)/$(LINUX_VERSION); \
|
|
|
|
instdest=$(DESTDIR)/usr/src/$$destname; \
|
2010-09-04 20:26:23 +00:00
|
|
|
echo "$(ZFS_META_VERSION)" >$$instdest/zfs.release; \
|
2010-08-26 18:22:58 +00:00
|
|
|
for instfile in $(noinst_HEADERS) module/$(LINUX_SYMBOLS); do \
|
|
|
|
$(INSTALL) -D $$instfile $$instdest/$$instfile; \
|
|
|
|
done
|
|
|
|
endif
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
pkg: @DEFAULT_PACKAGE@
|
|
|
|
pkg-modules: @DEFAULT_PACKAGE@-modules
|
|
|
|
pkg-utils: @DEFAULT_PACKAGE@-utils
|