summaryrefslogtreecommitdiffstats
path: root/loader/dmo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 00:31:07 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-25 00:31:07 +0000
commit58a9204e797cf9061ceac3c8ed49c5185ea2ee6b (patch)
tree80e63fe2b8cc17c429cd8527de46e42fdabf9faa /loader/dmo
parentcd18aec18a66890d8a07e0f996eb3e323797744e (diff)
downloadmpv-58a9204e797cf9061ceac3c8ed49c5185ea2ee6b.tar.bz2
mpv-58a9204e797cf9061ceac3c8ed49c5185ea2ee6b.tar.xz
Make loader Makefile non-recursive.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21201 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/dmo')
-rw-r--r--loader/dmo/Makefile48
1 files changed, 0 insertions, 48 deletions
diff --git a/loader/dmo/Makefile b/loader/dmo/Makefile
deleted file mode 100644
index 4a2528fa24..0000000000
--- a/loader/dmo/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-
-LIBNAME = libDMO_Filter.a
-
-include ../../config.mak
-
-# DS_AudioDec.c
-SRCS = DMO_AudioDecoder.c \
- DMO_VideoDecoder.c \
- buffer.c \
- dmo.c \
- dmo_guids.c \
-
-OBJS = $(SRCS:.c=.o)
-
-INCLUDE = -I. -I../dshow -I..
-CFLAGS = $(INCLUDE) $(OPTFLAGS) -DNOAVIFILE_HEADERS
-
-.SUFFIXES: .c .o
-
-# .PHONY: all clean
-
-.c.o:
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(LIBNAME): $(OBJS)
- $(AR) r $(LIBNAME) $(OBJS)
-
-test: test.c $(LIBNAME)
- $(CC) test.c $(CFLAGS) -o test ./libDMO_Filter.a ../libloader.a -lstdc++
-
-all: $(LIBNAME)
-
-clean:
- rm -f *.o *.a *~
-
-distclean: clean
- rm -f .depend test test.raw
-
-dep depend:
- $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
-
-#
-# include dependency files if they exist
-#
-ifneq ($(wildcard .depend),)
-include .depend
-endif
-