Originally committed as revision 6538 to svn://svn.ffmpeg.org/ffmpeg/trunktags/v0.5
| @@ -118,8 +118,6 @@ videohook: .libs | |||||
| documentation: | documentation: | ||||
| $(MAKE) -C doc all | $(MAKE) -C doc all | ||||
| .PHONY: install | |||||
| install: install-progs install-libs install-headers install-man $(INSTALLVHOOK) | install: install-progs install-libs install-headers install-man $(INSTALLVHOOK) | ||||
| ifeq ($(BUILD_SHARED),yes) | ifeq ($(BUILD_SHARED),yes) | ||||
| @@ -263,7 +261,9 @@ tar: | |||||
| ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude .svn ) | ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude .svn ) | ||||
| rm -rf /tmp/$(FILE) | rm -rf /tmp/$(FILE) | ||||
| .PHONY: lib | |||||
| .PHONY: all lib videohook documentation install* wininstaller uninstall* | |||||
| .PHONY: dep depend clean distclean TAGS tar | |||||
| .PHONY: codectest libavtest test-server fulltest test mpeg4 mpeg | |||||
| ifneq ($(wildcard .depend),) | ifneq ($(wildcard .depend),) | ||||
| include .depend | include .depend | ||||
| @@ -89,6 +89,8 @@ uninstall-headers: | |||||
| rm -f "$(addprefix $(incdir)/,$(HEADERS))" | rm -f "$(addprefix $(incdir)/,$(HEADERS))" | ||||
| rm -f "$(libdir)/pkgconfig/lib$(NAME).pc" | rm -f "$(libdir)/pkgconfig/lib$(NAME).pc" | ||||
| .PHONY: all depend dep clean distclean install* uninstall* | |||||
| # | # | ||||
| # include dependency files if they exist | # include dependency files if they exist | ||||
| # | # | ||||
| @@ -16,3 +16,5 @@ all: ffmpeg-doc.html faq.html ffserver-doc.html ffplay-doc.html hooks.html \ | |||||
| clean: | clean: | ||||
| rm -f *.html *.pod *.1 | rm -f *.html *.pod *.1 | ||||
| .PHONY: all clean | |||||
| @@ -422,3 +422,5 @@ motion-test: motion_test.o $(LIB) | |||||
| fft-test: fft-test.o $(LIB) | fft-test: fft-test.o $(LIB) | ||||
| $(CC) -o $@ $^ $(LIBAVUTIL) -lm | $(CC) -o $@ $^ $(LIBAVUTIL) -lm | ||||
| .PHONY: amrlibs tests | |||||
| @@ -78,3 +78,6 @@ dsptest: dsptest.c $(DSPDEPS) | |||||
| distclean clean: | distclean clean: | ||||
| rm -rf vsynth1 vsynth2 data | rm -rf vsynth1 vsynth2 data | ||||
| rm -f asynth1.sw *~ audiogen$(EXESUF) videogen$(EXESUF) rotozoom$(EXESUF) tiny_psnr$(EXESUF) | rm -f asynth1.sw *~ audiogen$(EXESUF) videogen$(EXESUF) rotozoom$(EXESUF) tiny_psnr$(EXESUF) | ||||
| .PHONY: all fulltest test codectest libavtest test-server | |||||
| .PHONY: mpeg4 mpeg ac3 snow snowll distclean clean | |||||
| @@ -44,6 +44,8 @@ clean: | |||||
| distclean: clean | distclean: clean | ||||
| rm -f .depend | rm -f .depend | ||||
| .PHONY: all depend dep clean distclean install* uninstall* | |||||
| ifneq ($(wildcard .depend),) | ifneq ($(wildcard .depend),) | ||||
| include .depend | include .depend | ||||
| endif | endif | ||||