forked from mia/Aegisub
ebc21524cf
from around r2140. An artifact from the very first commit of the new build system was wiping CPPFLAGS, which removed -g if --enable-debug was used. I didn't notice it locally as I was setting the flag differently. I wonder how it went on this long without anyone noticing, next: useful crashdumps for all. Originally committed to SVN as r2599.
31 lines
553 B
Makefile
31 lines
553 B
Makefile
noinst_LIBRARIES = libffmpegsource2_aegisub.a
|
|
|
|
AM_CPPFLAGS = -include ../aegisub/posix/defines.h -I../aegisub @WX_CPPFLAGS@
|
|
|
|
libffmpegsource2_aegisub_a_SOURCES = \
|
|
ffaudiosource.cpp \
|
|
ffms.cpp \
|
|
ffvideosource.cpp \
|
|
indexing.cpp \
|
|
MatroskaParser.c \
|
|
stdiostream.c \
|
|
utils.cpp \
|
|
wave64writer.cpp
|
|
|
|
|
|
libffmpegsource2_aegisub_a_SOURCES += \
|
|
MatroskaParser.h \
|
|
avisynth.h \
|
|
ffaudiosource.h \
|
|
ffavisynth.h \
|
|
ffms.h \
|
|
ffpp.h \
|
|
ffswscale.h \
|
|
ffvideosource.h \
|
|
indexing.h \
|
|
stdiostream.h \
|
|
utils.h \
|
|
wave64writer.h
|
|
|
|
EXTRA_DIST = \
|
|
ffms2.html
|