public inbox for lvm2-cvs@sourceware.org
help / color / mirror / Atom feed
* LVM2 Makefile.in
@ 2012-03-26 23:23 agk
  0 siblings, 0 replies; 12+ messages in thread
From: agk @ 2012-03-26 23:23 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	agk@sourceware.org	2012-03-26 23:23:32

Modified files:
	.              : Makefile.in 

Log message:
	add make install_verity

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.73&r2=1.74

--- LVM2/Makefile.in	2012/03/26 23:09:37	1.73
+++ LVM2/Makefile.in	2012/03/26 23:23:31	1.74
@@ -109,6 +109,10 @@
 install_tmpfiles_configuration:
 	$(MAKE) -C scripts install_tmpfiles_configuration
 
+install_verity:
+	$(MAKE) -C verity install_verity
+	$(MAKE) -C man install_verity
+
 LCOV_TRACES = libdm.info lib.info tools.info \
 	daemons/dmeventd.info daemons/clvmd.info
 CLEAN_TARGETS += $(LCOV_TRACES)


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2012-03-12 15:05 mornfall
  0 siblings, 0 replies; 12+ messages in thread
From: mornfall @ 2012-03-12 15:05 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	mornfall@sourceware.org	2012-03-12 15:05:55

Modified files:
	.              : Makefile.in 

Log message:
	Add a toplevel check_lvmetad target.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.70&r2=1.71

--- LVM2/Makefile.in	2012/02/28 18:35:04	1.70
+++ LVM2/Makefile.in	2012/03/12 15:05:55	1.71
@@ -83,7 +83,7 @@
 endif
 DISTCLEAN_TARGETS += cscope.out
 
-check check_cluster check_local unit: all
+check check_cluster check_local check_lvmetad unit: all
 	$(MAKE) -C test $(@)
 
 install_system_dirs:


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2010-04-06  9:50 zkabelac
  0 siblings, 0 replies; 12+ messages in thread
From: zkabelac @ 2010-04-06  9:50 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2010-04-06 09:50:07

Modified files:
	.              : Makefile.in 

Log message:
	Fix lcov target
	
	Patch fixes generation of coverage files for dmeventd and adds support for clvmd.
	Path names are stripped, so the the html looks better.
	Frames 'previews' is enabled for generated pages.
	Using top_srcdir was wrong here - though we still can't easily use builddir.
	Requiers using shell variables before execution of binaries build outside
	of srcdir.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.47&r2=1.48

--- LVM2/Makefile.in	2010/03/29 14:17:59	1.47
+++ LVM2/Makefile.in	2010/04/06 09:50:07	1.48
@@ -78,38 +78,41 @@
 check: all
 	$(MAKE) -C test all
 
+LCOV_TRACES = libdm.info lib.info tools.info \
+	daemons/dmeventd.info daemons/clvmd.info
+CLEAN_TARGETS += $(LCOV_TRACES)
+
 ifneq ("$(LCOV)", "")
-.PHONY: lcov-reset lcov lcov-dated
+.PHONY: lcov-reset lcov lcov-dated $(LCOV_TRACES)
 
 ifeq ($(MAKECMDGOALS),lcov-dated)
-LCOV_REPORTS_DIR=$(top_srcdir)/lcov_reports-$(shell date +%Y%m%d%k%M%S)
+LCOV_REPORTS_DIR := lcov_reports-$(shell date +%Y%m%d%k%M%S)
+lcov-dated: lcov
 else
-LCOV_REPORTS_DIR=$(top_srcdir)/lcov_reports
+LCOV_REPORTS_DIR := lcov_reports
 endif
 
 lcov-reset:
-	$(LCOV) -d $(top_srcdir)/dmeventd --zerocounters
-	$(LCOV) -d $(top_srcdir)/libdm --zerocounters
-	$(LCOV) -d $(top_srcdir)/lib --zerocounters
-	$(LCOV) -d $(top_srcdir)/tools --zerocounters
+	$(LCOV) --zerocounters $(addprefix -d , $(basename $(LCOV_TRACES)))
+
+# maybe use subdirs processing to create tracefiles...
+$(LCOV_TRACES):
+	$(LCOV) -b $(top_srcdir)/$(basename $@) \
+		-d $(basename $@) -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/" \
+		>$@
 
-lcov: all
-	$(RM) -rf $(LCOV_REPORTS_DIR)
-	$(MKDIR_P) $(LCOV_REPORTS_DIR)
-	$(LCOV) -b $(top_srcdir)/libdm -d $(top_srcdir)/libdm -c -o $(LCOV_REPORTS_DIR)/libdm.info
-	$(LCOV) -b $(top_srcdir)/lib -d $(top_srcdir)/lib -c -o $(LCOV_REPORTS_DIR)/lib.info
-	$(LCOV) -b $(top_srcdir)/tools -d $(top_srcdir)/tools -c -o $(LCOV_REPORTS_DIR)/tools.info
-	DMEVENTD_INFO="$(LCOV_REPORTS_DIR)/dmeventd.info" ;\
-	DMEVENTD_INFO_A="-a $$DMEVENTDINFO" ;\
-	$(LCOV) -b $(top_srcdir)/dmeventd -d $(top_srcdir)/dmeventd -c -o $$DMEVENTD_INFO || DMEVENTD_INFO_A="" ;\
-	$(LCOV) $$DMEVENTD_INFO_A -a $(LCOV_REPORTS_DIR)/lib.info \
-		-a $(LCOV_REPORTS_DIR)/libdm.info \
-		-a $(LCOV_REPORTS_DIR)/tools.info \
-		-o $(LCOV_REPORTS_DIR)/lvm.info
 ifneq ("$(GENHTML)", "")
-	$(GENHTML) -o $(LCOV_REPORTS_DIR) -p $(top_srcdir) $(LCOV_REPORTS_DIR)/lvm.info
+lcov: $(LCOV_TRACES)
+	$(RM) -r $(LCOV_REPORTS_DIR)
+	$(MKDIR_P) $(LCOV_REPORTS_DIR)
+	for i in $(LCOV_TRACES); do \
+		test -s $$i && lc="$$lc $$i"; \
+	done; \
+	test -z "$$lc" || $(GENHTML) --frames -p @abs_top_builddir@ \
+		-o $(LCOV_REPORTS_DIR) $$lc
 endif
 
-lcov-dated: lcov
-
 endif


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2010-03-29 14:07 zkabelac
  0 siblings, 0 replies; 12+ messages in thread
From: zkabelac @ 2010-03-29 14:07 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2010-03-29 14:07:57

Modified files:
	.              : Makefile.in 

Log message:
	Use $(top_srcdir) for sources and add cscope.out to distclean targets.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.43&r2=1.44

--- LVM2/Makefile.in	2010/03/29 14:06:06	1.43
+++ LVM2/Makefile.in	2010/03/29 14:07:56	1.44
@@ -80,10 +80,11 @@
 endif
 
 ifneq ("@CSCOPE_CMD@", "")
-cscope.out: tools
-	@CSCOPE_CMD@ -b -R
+cscope.out:
+	@CSCOPE_CMD@ -b -R -s$(top_srcdir)
 all: cscope.out
 endif
+DISTCLEAN_TARGETS += cscope.out
 
 check: all
 	$(MAKE) -C test all


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2010-03-29 14:06 zkabelac
  0 siblings, 0 replies; 12+ messages in thread
From: zkabelac @ 2010-03-29 14:06 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2010-03-29 14:06:06

Modified files:
	.              : Makefile.in 

Log message:
	Avoid hard sed replacement - i.e. quick test change in make.tmpl
	could avoid recofiguration steps in same debug cases.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.42&r2=1.43

--- LVM2/Makefile.in	2009/10/02 19:10:31	1.42
+++ LVM2/Makefile.in	2010/03/29 14:06:06	1.43
@@ -88,7 +88,7 @@
 check: all
 	$(MAKE) -C test all
 
-ifneq ("@LCOV@", "")
+ifneq ("$(LCOV)", "")
 .PHONY: lcov-reset lcov lcov-dated
 
 ifeq ($(MAKECMDGOALS),lcov-dated)
@@ -116,7 +116,7 @@
 		-a $(LCOV_REPORTS_DIR)/libdm.info \
 		-a $(LCOV_REPORTS_DIR)/tools.info \
 		-o $(LCOV_REPORTS_DIR)/lvm.info
-ifneq ("@GENHTML@", "")
+ifneq ("$(GENHTML)", "")
 	$(GENHTML) -o $(LCOV_REPORTS_DIR) -p $(top_srcdir) $(LCOV_REPORTS_DIR)/lvm.info
 endif
 


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2009-10-02 11:35 zkabelac
  0 siblings, 0 replies; 12+ messages in thread
From: zkabelac @ 2009-10-02 11:35 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2009-10-02 11:35:26

Modified files:
	.              : Makefile.in 

Log message:
	Remove daemons/clogd from distclean dirs (replaced with cmirrord)

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.40&r2=1.41

--- LVM2/Makefile.in	2009/10/02 09:47:11	1.40
+++ LVM2/Makefile.in	2009/10/02 11:35:25	1.41
@@ -34,7 +34,6 @@
 
 ifeq ($(MAKECMDGOALS),distclean)
   SUBDIRS += daemons/clvmd \
-	     daemons/clogd \
 	     daemons/cmirrord \
 	     daemons/dmeventd/plugins \
 	     daemons/dmeventd \


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2009-10-02  9:47 zkabelac
  0 siblings, 0 replies; 12+ messages in thread
From: zkabelac @ 2009-10-02  9:47 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2009-10-02 09:47:11

Modified files:
	.              : Makefile.in 

Log message:
	Run distclean also for daemons/cmirrord

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.39&r2=1.40

--- LVM2/Makefile.in	2009/09/22 13:32:39	1.39
+++ LVM2/Makefile.in	2009/10/02 09:47:11	1.40
@@ -35,6 +35,7 @@
 ifeq ($(MAKECMDGOALS),distclean)
   SUBDIRS += daemons/clvmd \
 	     daemons/clogd \
+	     daemons/cmirrord \
 	     daemons/dmeventd/plugins \
 	     daemons/dmeventd \
 	     lib/format1 \


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2009-09-22 13:32 zkabelac
  0 siblings, 0 replies; 12+ messages in thread
From: zkabelac @ 2009-09-22 13:32 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2009-09-22 13:32:39

Modified files:
	.              : Makefile.in 

Log message:
	Minor replace of of ${top_srcdir} with $(top_srcdir) for lcov target

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.38&r2=1.39

--- LVM2/Makefile.in	2009/09/15 15:37:12	1.38
+++ LVM2/Makefile.in	2009/09/22 13:32:39	1.39
@@ -105,7 +105,7 @@
 lcov: all
 	$(RM) -rf $(LCOV_REPORTS_DIR)
 	$(MKDIR_P) $(LCOV_REPORTS_DIR)
-	$(LCOV) -b ${top_srcdir}/libdm -d $(top_srcdir)/libdm -c -o $(LCOV_REPORTS_DIR)/libdm.info
+	$(LCOV) -b $(top_srcdir)/libdm -d $(top_srcdir)/libdm -c -o $(LCOV_REPORTS_DIR)/libdm.info
 	$(LCOV) -b $(top_srcdir)/lib -d $(top_srcdir)/lib -c -o $(LCOV_REPORTS_DIR)/lib.info
 	$(LCOV) -b $(top_srcdir)/tools -d $(top_srcdir)/tools -c -o $(LCOV_REPORTS_DIR)/tools.info
 	DMEVENTD_INFO="$(LCOV_REPORTS_DIR)/dmeventd.info" ;\


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2009-09-15 15:37 agk
  0 siblings, 0 replies; 12+ messages in thread
From: agk @ 2009-09-15 15:37 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	agk@sourceware.org	2009-09-15 15:37:13

Modified files:
	.              : Makefile.in 

Log message:
	Remove test/api which should only be under 'make test'.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.37&r2=1.38

--- LVM2/Makefile.in	2009/09/04 12:54:23	1.37
+++ LVM2/Makefile.in	2009/09/15 15:37:12	1.38
@@ -30,7 +30,6 @@
 
 ifeq ("@APPLIB@", "yes")
   SUBDIRS += liblvm
-  SUBDIRS += test/api
 endif
 
 ifeq ($(MAKECMDGOALS),distclean)


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2008-11-18 13:16 zkabelac
  0 siblings, 0 replies; 12+ messages in thread
From: zkabelac @ 2008-11-18 13:16 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2008-11-18 13:16:03

Modified files:
	.              : Makefile.in 

Log message:
	daemons depends on liblvm2cmd - fixes parallel builds

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.29&r2=1.30

--- LVM2/Makefile.in	2008/11/10 14:04:12	1.29
+++ LVM2/Makefile.in	2008/11/18 13:16:03	1.30
@@ -42,7 +42,7 @@
 
 libdm: include
 lib: libdm
-daemons: lib
+daemons: lib tools
 tools: lib device-mapper
 po: tools daemons
 


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2008-11-10 14:04 mornfall
  0 siblings, 0 replies; 12+ messages in thread
From: mornfall @ 2008-11-10 14:04 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	mornfall@sourceware.org	2008-11-10 14:04:12

Modified files:
	.              : Makefile.in 

Log message:
	Include libdm in lcov reports.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.28&r2=1.29

--- LVM2/Makefile.in	2008/11/04 15:55:26	1.28
+++ LVM2/Makefile.in	2008/11/10 14:04:12	1.29
@@ -84,18 +84,21 @@
 
 lcov-reset:
 	$(LCOV) -d $(top_srcdir)/dmeventd --zerocounters
+	$(LCOV) -d $(top_srcdir)/libdm --zerocounters
 	$(LCOV) -d $(top_srcdir)/lib --zerocounters
 	$(LCOV) -d $(top_srcdir)/tools --zerocounters
 
 lcov: all
 	$(RM) -rf $(LCOV_REPORTS_DIR)
 	$(MKDIR_P) $(LCOV_REPORTS_DIR)
+	$(LCOV) -b ${top_srcdir}/libdm -d $(top_srcdir)/libdm -c -o $(LCOV_REPORTS_DIR)/libdm.info
 	$(LCOV) -b $(top_srcdir)/lib -d $(top_srcdir)/lib -c -o $(LCOV_REPORTS_DIR)/lib.info
 	$(LCOV) -b $(top_srcdir)/tools -d $(top_srcdir)/tools -c -o $(LCOV_REPORTS_DIR)/tools.info
 	DMEVENTD_INFO="$(LCOV_REPORTS_DIR)/dmeventd.info" ;\
 	DMEVENTD_INFO_A="-a $$DMEVENTDINFO" ;\
 	$(LCOV) -b $(top_srcdir)/dmeventd -d $(top_srcdir)/dmeventd -c -o $$DMEVENTD_INFO || DMEVENTD_INFO_A="" ;\
 	$(LCOV) $$DMEVENTD_INFO_A -a $(LCOV_REPORTS_DIR)/lib.info \
+		-a $(LCOV_REPORTS_DIR)/libdm.info \
 		-a $(LCOV_REPORTS_DIR)/tools.info \
 		-o $(LCOV_REPORTS_DIR)/lvm.info
 ifneq ("@GENHTML@", "")


^ permalink raw reply	[flat|nested] 12+ messages in thread
* LVM2 Makefile.in
@ 2008-06-12  9:48 meyering
  0 siblings, 0 replies; 12+ messages in thread
From: meyering @ 2008-06-12  9:48 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1015 bytes --]

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	meyering@sourceware.org	2008-06-12 09:48:45

Modified files:
	.              : Makefile.in 

Log message:
	Makefile.in: correct distclean rule
	
	* Makefile.in (SUBDIRS): Remove long-unused test/* names.
	(SUBDIRS) [distclean]: Append "test".
	Discovered with Zdeněk Kabeláč.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/Makefile.in.diff?cvsroot=lvm2&r1=1.20&r2=1.21

--- LVM2/Makefile.in	2007/09/21 10:16:43	1.20
+++ LVM2/Makefile.in	2008/06/12 09:48:45	1.21
@@ -1,6 +1,6 @@
 #
 # Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
-# Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
 #
 # This file is part of LVM2.
 #
@@ -36,8 +36,8 @@
 	     lib/locking \
 	     lib/mirror \
 	     lib/snapshot \
-	     po \
-	     test/mm test/device test/format1 test/regex test/filters
+	     test \
+	     po
   DISTCLEAN_TARGETS += lib/misc/configure.h
 endif
 


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2012-03-26 23:23 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-26 23:23 LVM2 Makefile.in agk
  -- strict thread matches above, loose matches on Subject: below --
2012-03-12 15:05 mornfall
2010-04-06  9:50 zkabelac
2010-03-29 14:07 zkabelac
2010-03-29 14:06 zkabelac
2009-10-02 11:35 zkabelac
2009-10-02  9:47 zkabelac
2009-09-22 13:32 zkabelac
2009-09-15 15:37 agk
2008-11-18 13:16 zkabelac
2008-11-10 14:04 mornfall
2008-06-12  9:48 meyering

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).