]> sourceware.org Git - lvm2.git/blobdiff - Makefile.in
man: document allocation process in lvm.8
[lvm2.git] / Makefile.in
index 5173d57302fad2183a5019ea79bac3db1c95acf0..d957e260e34e40a20ca39f0a55dac86b73d9f1cf 100644 (file)
@@ -16,7 +16,7 @@ srcdir = @srcdir@
 top_srcdir = @top_srcdir@
 top_builddir = @top_builddir@
 
-SUBDIRS = doc include man scripts
+SUBDIRS = doc include man
 
 ifeq ("@UDEV_RULES@", "yes")
   SUBDIRS += udev
@@ -32,10 +32,18 @@ ifeq ("@APPLIB@", "yes")
   SUBDIRS += liblvm
 endif
 
+ifeq ("@BUILD_LVMETAD@", "yes")
+  SUBDIRS += libdaemon
+endif
+
+SUBDIRS += scripts
+
+# FIXME Should use intermediate Makefiles here!
 ifeq ($(MAKECMDGOALS),distclean)
   SUBDIRS = doc include man scripts \
-    lib tools daemons libdm \
-    udev po liblvm test/api test
+    libdaemon lib tools daemons libdm \
+    udev po liblvm test \
+    unit-tests/datastruct unit-tests/mm unit-tests/regex
 endif
 DISTCLEAN_DIRS += lcov_reports*
 DISTCLEAN_TARGETS += config.cache config.log config.status make.tmpl
@@ -43,11 +51,12 @@ DISTCLEAN_TARGETS += config.cache config.log config.status make.tmpl
 include make.tmpl
 
 libdm: include
-lib: libdm
+lib: libdm libdaemon
 liblvm: lib
-daemons: lib tools
-tools: lib device-mapper
+daemons: lib libdaemon tools
+tools: lib libdaemon device-mapper
 po: tools daemons
+scripts: liblvm libdm
 
 lib.device-mapper: include.device-mapper
 libdm.device-mapper: include.device-mapper
@@ -77,11 +86,11 @@ all: cscope.out
 endif
 DISTCLEAN_TARGETS += cscope.out
 
-check check_cluster check_local: all
+check check_cluster check_local check_lvmetad unit: all
        $(MAKE) -C test $(@)
 
 install_system_dirs:
-       $(INSTALL_ROOT_DIR) $(DESTDIR)$(DEFAULT_SYS_DIR)
+       $(INSTALL_DIR) $(DESTDIR)$(DEFAULT_SYS_DIR)
        $(INSTALL_ROOT_DIR) $(DESTDIR)$(DEFAULT_ARCHIVE_DIR)
        $(INSTALL_ROOT_DIR) $(DESTDIR)$(DEFAULT_BACKUP_DIR)
        $(INSTALL_ROOT_DIR) $(DESTDIR)$(DEFAULT_CACHE_DIR)
@@ -92,6 +101,15 @@ install_system_dirs:
 install_initscripts: 
        $(MAKE) -C scripts install_initscripts
 
+install_systemd_generators:
+       $(MAKE) -C scripts install_systemd_generators
+
+install_systemd_units:
+       $(MAKE) -C scripts install_systemd_units
+
+install_tmpfiles_configuration:
+       $(MAKE) -C scripts install_tmpfiles_configuration
+
 LCOV_TRACES = libdm.info lib.info tools.info \
        daemons/dmeventd.info daemons/clvmd.info
 CLEAN_TARGETS += $(LCOV_TRACES)
@@ -111,11 +129,10 @@ lcov-reset:
 
 # maybe use subdirs processing to create tracefiles...
 $(LCOV_TRACES):
-       $(LCOV) -b $(top_srcdir)/$(basename $@) \
-               -d $(basename $@) -c -o - | $(SED) \
+       $(LCOV) -b $(basename $@) -d $(basename $@) \
+               --ignore-errors source -c -o - | $(SED) \
                -e "s/\(dmeventd_lvm.[ch]\)/plugins\/lvm2\/\1/" \
-               -e "s/\(dmeventd_mirror.c\)/plugins\/mirror\/\1/" \
-               -e "s/\(dmeventd_snapshot.c\)/plugins\/snapshot\/\1/" \
+               -e "s/dmeventd_\(mirror\|snapshot\|thin\|raid\)\.c/plugins\/\1\/dmeventd_\1\.c/" \
                >$@
 
 ifneq ("$(GENHTML)", "")
@@ -138,6 +155,7 @@ RUBY=ruby1.9 -Ireport-generators/lib -Ireport-generators/test
 .PHONEY: unit-test ruby-test test-programs
 
 # FIXME: put dependencies on libdm and liblvm
+# FIXME: Should be handled by Makefiles in subdirs, not here at top level.
 test-programs:
        cd unit-tests/regex && $(MAKE)
        cd unit-tests/datastruct && $(MAKE)
This page took 0.097495 seconds and 5 git commands to generate.