# *
# *  XMMP - LinuX MultiMedia Project ( www.frozenproductions.com )
# *  Copyright (c) 1999 - 2002 Arthur Kleer <kleer@frozenproductions.com>
# *

TOPDIR = ../../..

include $(TOPDIR)/Makefile.conf

OBJS = guids.o inputpin.o outputpin.o allocator.o cmediasample.o DS_Filter.o \
	DS_AudioDecoder.o DS_VideoDecoder.o

O_TARGET = _DirectShow.o

CDEFS = -DNOAVIFILE_HEADERS -D_REENTRANT -D_FILE_OFFSET_BITS=64

all:	$(O_TARGET)

clean:	cleanlib

install:

include $(TOPDIR)/Makefile.make

# We do not want to debug wine code
DEBUG = 
# No other headers needed
INCLUDES = -I ./ -I ../wine -I ../
# We really need this. -O3 will cause segfault in wine code
OPT += -funroll-all-loops -fno-omit-frame-pointer
