2010-12-05 20:12:42 +01:00
|
|
|
include ../Makefile.inc
|
2008-10-28 03:18:14 +01:00
|
|
|
|
2011-02-03 19:08:11 +01:00
|
|
|
CXXFLAGS = -Icore -Iinclude -D__UNIX__ -DFFMS_EXPORTS -DHAVE_STRLCPY -D__STDC_CONSTANT_MACROS -fPIC
|
2010-12-05 20:12:42 +01:00
|
|
|
CXXFLAGS += $(CFLAGS_LIBAVFORMAT) $(CFLAGS_LIBAVCODEC) $(CFLAGS_LIBAVUTIL) $(CFLAGS_LIBPOSTPROC)
|
2009-01-06 14:36:08 +01:00
|
|
|
|
2010-12-05 20:12:42 +01:00
|
|
|
LIB = libffmpegsource_aegisub.a
|
2008-10-28 03:18:14 +01:00
|
|
|
|
2010-12-05 20:12:42 +01:00
|
|
|
SRC = \
|
2009-09-26 23:56:39 +02:00
|
|
|
src/core/audiosource.cpp \
|
2009-07-14 00:30:49 +02:00
|
|
|
src/core/ffms.cpp \
|
|
|
|
src/core/indexing.cpp \
|
2009-09-26 23:56:39 +02:00
|
|
|
src/core/lavfaudio.cpp \
|
|
|
|
src/core/lavfindexer.cpp \
|
|
|
|
src/core/lavfvideo.cpp \
|
|
|
|
src/core/matroskaaudio.cpp \
|
|
|
|
src/core/matroskaindexer.cpp \
|
2009-07-14 00:30:49 +02:00
|
|
|
src/core/matroskaparser.c \
|
2009-09-26 23:56:39 +02:00
|
|
|
src/core/matroskavideo.cpp \
|
2009-07-14 00:30:49 +02:00
|
|
|
src/core/stdiostream.c \
|
|
|
|
src/core/utils.cpp \
|
2009-09-26 23:56:39 +02:00
|
|
|
src/core/videosource.cpp \
|
2009-07-14 00:30:49 +02:00
|
|
|
src/core/wave64writer.cpp
|
2008-10-28 03:18:14 +01:00
|
|
|
|
2010-12-05 20:12:42 +01:00
|
|
|
HEADER = \
|
2009-11-07 04:08:49 +01:00
|
|
|
src/core/*.h \
|
|
|
|
include/*.h
|
2010-12-05 20:12:42 +01:00
|
|
|
|
|
|
|
include ../Makefile.target
|
2011-01-10 22:27:39 +01:00
|
|
|
-include src/core/*.d
|
2010-12-05 20:12:42 +01:00
|
|
|
|