forked from mia/Aegisub
e4d77f6474
* The internal libass will always be newer than external packages. * aegisub requires fontconfig _and_ iconv support, some systems have either/or but rarely both. * There's zero benifit to supporting an external version. In the future I might add some flags to allow it, if there is a compelling reason to. Originally committed to SVN as r2125.
38 lines
468 B
Makefile
38 lines
468 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
|
if HAVE_UNIVCHARDET
|
|
univchardet = universalchardet
|
|
endif
|
|
|
|
if HAVE_AUTO3_LUA
|
|
auto3 = auto3
|
|
endif
|
|
|
|
if WITH_LIBASS
|
|
libass = libass
|
|
endif
|
|
|
|
|
|
SUBDIRS = \
|
|
$(univchardet) \
|
|
$(auto3) \
|
|
$(libass) \
|
|
aegisub \
|
|
automation \
|
|
po \
|
|
m4macros
|
|
|
|
EXTRA_DIST = \
|
|
intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in \
|
|
mkinstalldirs \
|
|
config.guess \
|
|
config.sub \
|
|
depcomp \
|
|
install-sh \
|
|
missing \
|
|
mkinstalldirs \
|
|
INSTALL \
|
|
README
|