build: Fix automake warnings

This commit is contained in:
Matthew Booth
2012-01-04 09:56:16 +00:00
committed by Richard W.M. Jones
parent 8824089477
commit c655415dc0
3 changed files with 12 additions and 8 deletions

View File

@@ -40,11 +40,9 @@ if HAVE_PERL
# a nightmare, news at 11.
# src/ dependencies
.PHONY: src_deps
src_deps: $(top_builddir)/src/libguestfs.la $(generator_built)
# Images used by tests
.PHONY: test_images
test_images:
$(MAKE) -C $(top_builddir)/tests/data
@@ -76,3 +74,5 @@ install-data-hook:
$(MAKE) -f Makefile-pl DESTDIR=$(DESTDIR) install
endif
.PHONY: src_deps test_images

View File

@@ -17,6 +17,8 @@
include $(top_srcdir)/subdir-rules.mk
SOURCES =
EXTRA_DIST = \
$(SOURCES) \
virt-resize.pod \
@@ -27,7 +29,7 @@ CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o virt-resize test.img
if HAVE_OCAML
# Alphabetical order.
SOURCES = \
SOURCES += \
progress_c.c \
progress.mli \
progress.ml \
@@ -120,10 +122,10 @@ depend: .depend
include .depend
.PHONY: depend docs
endif
.PHONY: depend docs
# Parallel builds don't obey dependencies for some reason we
# don't understand.
.NOTPARALLEL:

View File

@@ -17,6 +17,8 @@
include $(top_srcdir)/subdir-rules.mk
SOURCES =
EXTRA_DIST = \
$(SOURCES) \
virt-sparsify.pod \
@@ -27,7 +29,7 @@ CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o virt-sparsify test.img
if HAVE_OCAML
# Alphabetical order.
SOURCES = \
SOURCES += \
progress_c.c \
progress.mli \
progress.ml \
@@ -113,10 +115,10 @@ depend: .depend
include .depend
.PHONY: depend docs
endif
.PHONY: depend docs
# Parallel builds don't obey dependencies for some reason we
# don't understand.
.NOTPARALLEL: