Browse code

Mark all phony targets as such.

Originally committed as revision 6538 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Biurrun authored on 2006/10/04 02:42:17
Showing 6 changed files
... ...
@@ -118,8 +118,6 @@ videohook: .libs
118 118
 documentation:
119 119
 	$(MAKE) -C doc all
120 120
 
121
-.PHONY: install
122
-
123 121
 install: install-progs install-libs install-headers install-man $(INSTALLVHOOK)
124 122
 
125 123
 ifeq ($(BUILD_SHARED),yes)
... ...
@@ -263,7 +261,9 @@ tar:
263 263
 	( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude .svn )
264 264
 	rm -rf /tmp/$(FILE)
265 265
 
266
-.PHONY: lib
266
+.PHONY: all lib videohook documentation install* wininstaller uninstall*
267
+.PHONY: dep depend clean distclean TAGS tar
268
+.PHONY: codectest libavtest test-server fulltest test mpeg4 mpeg
267 269
 
268 270
 ifneq ($(wildcard .depend),)
269 271
 include .depend
... ...
@@ -89,6 +89,8 @@ uninstall-headers:
89 89
 	rm -f "$(addprefix $(incdir)/,$(HEADERS))"
90 90
 	rm -f "$(libdir)/pkgconfig/lib$(NAME).pc"
91 91
 
92
+.PHONY: all depend dep clean distclean install* uninstall*
93
+
92 94
 #
93 95
 # include dependency files if they exist
94 96
 #
... ...
@@ -16,3 +16,5 @@ all: ffmpeg-doc.html faq.html ffserver-doc.html ffplay-doc.html hooks.html \
16 16
 
17 17
 clean:
18 18
 	rm -f *.html *.pod *.1
19
+
20
+.PHONY: all clean
... ...
@@ -422,3 +422,5 @@ motion-test: motion_test.o $(LIB)
422 422
 
423 423
 fft-test: fft-test.o $(LIB)
424 424
 	$(CC) -o $@ $^ $(LIBAVUTIL) -lm
425
+
426
+.PHONY: amrlibs tests
... ...
@@ -78,3 +78,6 @@ dsptest: dsptest.c $(DSPDEPS)
78 78
 distclean clean:
79 79
 	rm -rf vsynth1 vsynth2 data
80 80
 	rm -f asynth1.sw *~ audiogen$(EXESUF) videogen$(EXESUF) rotozoom$(EXESUF) tiny_psnr$(EXESUF)
81
+
82
+.PHONY: all fulltest test codectest libavtest test-server
83
+.PHONY: mpeg4 mpeg ac3 snow snowll distclean clean
... ...
@@ -44,6 +44,8 @@ clean:
44 44
 distclean: clean
45 45
 	rm -f .depend
46 46
 
47
+.PHONY: all depend dep clean distclean install* uninstall*
48
+
47 49
 ifneq ($(wildcard .depend),)
48 50
 include .depend
49 51
 endif