Mercurial > mplayer.hg
comparison Makefile @ 17764:3858a365c3a0
fix incomplete abs->rel path conversion
also added missing make distclean for libpostproc
author | henry |
---|---|
date | Tue, 07 Mar 2006 17:49:37 +0000 |
parents | 7d4c7463e91b |
children | 7b7681cf5530 |
comparison
equal
deleted
inserted
replaced
17763:72f3e5e8d2a1 | 17764:3858a365c3a0 |
---|---|
159 CODEC_LIBS += $(FAAC_LIB) | 159 CODEC_LIBS += $(FAAC_LIB) |
160 endif | 160 endif |
161 | 161 |
162 PARTS = libmpdemux \ | 162 PARTS = libmpdemux \ |
163 libmpcodecs \ | 163 libmpcodecs \ |
164 libavutil \ | |
165 libavcodec \ | |
166 libavformat \ | |
167 libao2 \ | 164 libao2 \ |
168 osdep \ | 165 osdep \ |
169 postproc \ | 166 postproc \ |
170 input \ | 167 input \ |
171 libvo \ | 168 libvo \ |
530 | 527 |
531 distclean: clean doxygen_clean | 528 distclean: clean doxygen_clean |
532 -rm -f *~ $(PRG) $(PRG_MENCODER) $(PRG_CFG) | 529 -rm -f *~ $(PRG) $(PRG_MENCODER) $(PRG_CFG) |
533 -rm -f .depend configure.log codecs.conf.h help_mp.h | 530 -rm -f .depend configure.log codecs.conf.h help_mp.h |
534 @for a in $(PARTS); do $(MAKE) -C $$a distclean; done | 531 @for a in $(PARTS); do $(MAKE) -C $$a distclean; done |
532 $(MAKE) -C libavutil distclean SRC_PATH=.. | |
533 $(MAKE) -C libavcodec distclean SRC_PATH=.. | |
534 $(MAKE) -C libavcodec/libpostproc distclean SRC_PATH=../.. | |
535 $(MAKE) -C libavformat distclean SRC_PATH=.. | |
535 | 536 |
536 strip: | 537 strip: |
537 strip -s $(ALL_PRG) | 538 strip -s $(ALL_PRG) |
538 | 539 |
539 dep: depend | 540 dep: depend |
540 | 541 |
541 depend: help_mp.h | 542 depend: help_mp.h |
542 ./version.sh `$(CC) -dumpversion` | 543 ./version.sh `$(CC) -dumpversion` |
543 $(CC) -MM $(CFLAGS) -DCODECS2HTML mplayer.c mencoder.c $(SRCS_MPLAYER) $(SRCS_MENCODER) 1>.depend | 544 $(CC) -MM $(CFLAGS) -DCODECS2HTML mplayer.c mencoder.c $(SRCS_MPLAYER) $(SRCS_MENCODER) 1>.depend |
544 @for a in $(PARTS); do $(MAKE) -C $$a dep; done | 545 @for a in $(PARTS); do $(MAKE) -C $$a dep; done |
546 $(MAKE) -C libavutil dep SRC_PATH=.. | |
547 $(MAKE) -C libavcodec dep SRC_PATH=.. | |
548 $(MAKE) -C libavformat dep SRC_PATH=.. | |
545 | 549 |
546 # ./configure must be run if it changed in CVS | 550 # ./configure must be run if it changed in CVS |
547 config.h: configure | 551 config.h: configure |
548 @echo "############################################################" | 552 @echo "############################################################" |
549 @echo "####### Please run ./configure again - it's changed! #######" | 553 @echo "####### Please run ./configure again - it's changed! #######" |