Commit 818220f5e9ef39fc5025b9f2277fac483d99d330

Authored by aliguori
1 parent 88422e2e

Add missing dependencies for qemu-doc.* (Stefan Weil)

This patch fixes some items in Makefile:

* remove duplicate entries from .PHONY
* add missing entries to .PHONY
* sort entries in .PHONY alphabetically
* add missing dependencies for qemu-doc.* targets

Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>



git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5307 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 5 additions and 3 deletions
Makefile
... ... @@ -2,8 +2,8 @@
2 2  
3 3 include config-host.mak
4 4  
5   -.PHONY: all clean distclean dvi info install install-doc tar tarbin \
6   - speed test html dvi info
  5 +.PHONY: all clean cscope distclean dvi html info install install-doc \
  6 + recurse-all speed tar tarbin test
7 7  
8 8 VPATH=$(SRC_PATH):$(SRC_PATH)/hw
9 9  
... ... @@ -32,7 +32,7 @@ ifdef CONFIG_WIN32
32 32 LIBS+=-lwinmm -lws2_32 -liphlpapi
33 33 endif
34 34  
35   -all: $(TOOLS) $(DOCS) recurse-all
  35 +all: $(TOOLS) $(DOCS) recurse-all
36 36  
37 37 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
38 38  
... ... @@ -288,6 +288,8 @@ dvi: qemu-doc.dvi qemu-tech.dvi
288 288  
289 289 html: qemu-doc.html qemu-tech.html
290 290  
  291 +qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi
  292 +
291 293 VERSION ?= $(shell cat VERSION)
292 294 FILE = qemu-$(VERSION)
293 295  
... ...