install-dev: $(addsuffix -install-dev,$(SUBDIRS))
-install-qa: install $(addsuffix -install-qa,$(SUBDIRS))
-
%-install:
@echo "Installing $@"
$(Q)$(MAKE) $(MAKEOPTS) -C $* install
@echo "Installing $@"
$(Q)$(MAKE) $(MAKEOPTS) -C $* install-dev
-%-install-qa:
- @echo "Installing $@"
- $(Q)$(MAKE) $(MAKEOPTS) -C $* install-qa
-
distclean: clean
$(Q)rm -f $(LDIRT)
TOPDIR = ..
include $(TOPDIR)/include/builddefs
-QAHFILES = xfs_arch.h
-
LIBHFILES = libxfs.h \
libxlog.h \
atomic.h \
$(PKG_PLATFORM).h \
platform_defs.h \
xfs.h \
- xqm.h
+ xqm.h \
+ xfs_arch.h
PHFILES = darwin.h freebsd.h irix.h linux.h gnukfreebsd.h
DKHFILES = volume.h fstyp.h dvh.h
include $(BUILDRULES)
# set up include/xfs header directory
-install-headers: $(addsuffix -hdrs, $(HFILES) $(QAHFILES) $(PHFILES) $(DKHFILES) $(LIBHFILES))
+install-headers: $(addsuffix -hdrs, $(HFILES) $(PHFILES) $(DKHFILES) $(LIBHFILES))
%-hdrs:
$(Q)$(LN_S) -f $(PWD)/include/$* xfs/$*
install-dev: install
$(INSTALL) -m 644 $(HFILES) $(PKG_INC_DIR)
-
-install-qa: install-dev
- $(INSTALL) -m 644 $(QAHFILES) $(PKG_INC_DIR)
-
# rebuild on every make invocation isn't a problem we need to care about. Just
# do it silently so it doesn't make the build unnecessarily noisy.
-.PHONY : depend ltdepend install-qa
+.PHONY : depend ltdepend
MAKEDEP := $(MAKEDEPEND) $(CFLAGS)
install-dev: default
-install-qa: install-dev
-
-include .ltdep
install-dev: default
$(INSTALL_LTLIB_DEV)
-install-qa: install-dev
-
-include .ltdep
include $(BUILDRULES)
-install install-dev install-qa: default
+install install-dev: default
-include .ltdep
# headers to install in include/xfs
PKGHFILES = xfs_fs.h \
- xfs_types.h
-
-# headers installed in QA targets
-QAHFILES = \
+ xfs_types.h \
xfs_da_format.h \
xfs_format.h \
xfs_log_format.h
install: default
$(INSTALL) -m 755 -d $(PKG_INC_DIR)
-install-headers: $(addsuffix -hdrs, $(PKGHFILES) $(LIBHFILES) $(QAHFILES))
+install-headers: $(addsuffix -hdrs, $(PKGHFILES) $(LIBHFILES))
%-hdrs:
$(Q)$(LN_S) -f $(PWD)/libxfs/$* $(TOPDIR)/include/xfs/$*
install-dev: install
$(INSTALL) -m 644 $(PKGHFILES) $(PKG_INC_DIR)
-install-qa: install-dev
- $(INSTALL) -m 644 $(QAHFILES) $(PKG_INC_DIR)
-
# We need to install the headers before building the dependencies. If we
# include the .ltdep file, the makefile decides that it needs to build the
# dependencies to remake the makefile before running the header install target,
include $(BUILDRULES)
-install install-dev install-qa: default
+install install-dev: default
-include .ltdep