summaryrefslogtreecommitdiffstats
path: root/loader/dshow/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'loader/dshow/Makefile')
-rw-r--r--loader/dshow/Makefile44
1 files changed, 44 insertions, 0 deletions
diff --git a/loader/dshow/Makefile b/loader/dshow/Makefile
new file mode 100644
index 0000000000..3970cfcfd4
--- /dev/null
+++ b/loader/dshow/Makefile
@@ -0,0 +1,44 @@
+
+LIBNAME = libDS_Filter.a
+
+include ../../config.mak
+
+SRCS = DS_Filter.cpp allocator.cpp cmediasample.cpp guids.cpp inputpin.cpp outputpin.cpp
+OBJS = DS_Filter.o allocator.o cmediasample.o guids.o inputpin.o outputpin.o
+
+INCLUDE = -I. -I.. -I../wine
+CFLAGS = $(OPTFLAGS) $(INCLUDE)
+
+.SUFFIXES: .cpp .o
+
+# .PHONY: all clean
+
+.cpp.o:
+ $(CC) -c $(CFLAGS) -o $@ $<
+
+$(LIBNAME): .depend $(OBJS)
+ $(AR) r $(LIBNAME) $(OBJS)
+
+test: test.cpp
+ $(CC) test.cpp $(CFLAGS) -o test -L. -lDS_Filter -L.. -lloader -ldl -lpthread -lstdc++
+
+all: $(LIBNAME)
+
+clean:
+ rm -f *.o *.a *~
+
+distclean:
+ rm -f Makefile.bak *.o *.a *~ .depend test test.raw
+
+dep: depend
+depend: .depend
+
+.depend: Makefile ../../config.mak
+ makedepend -f- -- $(CFLAGS) -- $(SRCS) 1>.depend 2>/dev/null
+
+#
+# include dependency files if they exist
+#
+ifneq ($(wildcard .depend),)
+include .depend
+endif