comparison loader/dshow/Makefile @ 169:550ebe869cec

Added C-C++ interface in DS_VideoDec.h
author arpi_esp
date Tue, 20 Mar 2001 01:59:42 +0000
parents bdc4a8fc04d8
children a4d3c83eeb52
comparison
equal deleted inserted replaced
168:bdc4a8fc04d8 169:550ebe869cec
1 1
2 LIBNAME = libDS_Filter.a 2 LIBNAME = libDS_Filter.a
3 3
4 include ../../config.mak 4 include ../../config.mak
5 5
6 SRCS = DS_Filter.cpp allocator.cpp cmediasample.cpp guids.cpp inputpin.cpp outputpin.cpp 6 SRCS = DS_VideoDec.cpp DS_Filter.cpp allocator.cpp cmediasample.cpp guids.cpp inputpin.cpp outputpin.cpp
7 OBJS = DS_Filter.o allocator.o cmediasample.o guids.o inputpin.o outputpin.o 7 OBJS = DS_VideoDec.o DS_Filter.o allocator.o cmediasample.o guids.o inputpin.o outputpin.o
8 8
9 INCLUDE = -I. -I.. -I../wine 9 INCLUDE = -I. -I.. -I../wine
10 CFLAGS = $(OPTFLAGS) $(INCLUDE) 10 CFLAGS = $(OPTFLAGS) $(INCLUDE)
11 11
12 .SUFFIXES: .cpp .o 12 .SUFFIXES: .cpp .o
17 $(CC) -c $(CFLAGS) -o $@ $< 17 $(CC) -c $(CFLAGS) -o $@ $<
18 18
19 $(LIBNAME): .depend $(OBJS) 19 $(LIBNAME): .depend $(OBJS)
20 $(AR) r $(LIBNAME) $(OBJS) 20 $(AR) r $(LIBNAME) $(OBJS)
21 21
22 test: test.cpp 22 test: test.c $(LIBNAME)
23 $(CC) test.cpp $(CFLAGS) -o test -L. -lDS_Filter -L.. -lloader -ldl -lpthread -lstdc++ 23 $(CC) test.c $(CFLAGS) -o test -L. -lDS_Filter -L.. -lloader -ldl -lpthread -lstdc++
24 24
25 all: $(LIBNAME) 25 all: $(LIBNAME)
26 26
27 clean: 27 clean:
28 rm -f *.o *.a *~ 28 rm -f *.o *.a *~