diff options
author | Måns Rullgård <mans@mansr.com> | 2008-04-07 21:16:31 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-04-07 21:16:31 +0000 |
commit | 71c61f62a3ca855062c832ec2ed27e331221af45 (patch) | |
tree | 8345f97e1bc07033d6d183fe33c65c3f6e1b0814 /libavutil | |
parent | c09ed33e186ea0ba4ab96599bd69aea462aabeda (diff) | |
download | ffmpeg-71c61f62a3ca855062c832ec2ed27e331221af45.tar.gz |
non-recursive makefiles
Originally committed as revision 12760 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 2ff0a9764f..c0dfa95f56 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -1,4 +1,4 @@ -include ../config.mak +include $(SUBDIR)../config.mak NAME = avutil @@ -41,9 +41,8 @@ HEADERS = adler32.h \ TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 sha1 softfloat tree) -include ../common.mak +include $(SUBDIR)../subdir.mak -lzo-test$(EXESUF): EXTRALIBS += -llzo2 +$(SUBDIR)lzo-test$(EXESUF): EXTRALIBS += -llzo2 -clean:: - rm -f lzo-test$(EXESUF) +CLEANFILES = lzo-test$(EXESUF) |