summaryrefslogtreecommitdiff
path: root/libswscale/Makefile
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2008-04-07 21:16:50 +0000
committerMåns Rullgård <mans@mansr.com>2008-04-07 21:16:50 +0000
commit7669899bdf2d1b416a13fa2ba763e28c1fbedafb (patch)
treecc9faf3d1aaf403a9cd161d45a57836ed8454eb5 /libswscale/Makefile
parent71c61f62a3ca855062c832ec2ed27e331221af45 (diff)
non-recursive makefiles
Originally committed as revision 26346 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/Makefile')
-rw-r--r--libswscale/Makefile13
1 files changed, 6 insertions, 7 deletions
diff --git a/libswscale/Makefile b/libswscale/Makefile
index d99cb56bd1..20ace9e471 100644
--- a/libswscale/Makefile
+++ b/libswscale/Makefile
@@ -1,4 +1,4 @@
-include ../config.mak
+include $(SUBDIR)../config.mak
NAME = swscale
FFLIBS = avutil
@@ -15,12 +15,11 @@ ASM_OBJS-$(ARCH_BFIN) += internal_bfin.o
HEADERS = swscale.h rgb2rgb.h
-include ../common.mak
+CLEANFILES = cs_test swscale-example
-cs_test: cs_test.o $(LIBNAME)
+include $(SUBDIR)../subdir.mak
-swscale-example: swscale-example.o $(LIBNAME)
-swscale-example: EXTRALIBS += -lm
+$(SUBDIR)cs_test: $(SUBDIR)cs_test.o $(SUBDIR)$(LIBNAME)
-clean::
- rm -f cs_test swscale-example
+$(SUBDIR)swscale-example: $(SUBDIR)swscale-example.o $(SUBDIR)$(LIBNAME)
+$(SUBDIR)swscale-example: EXTRALIBS += -lm