forked from mia/Aegisub
f31d9a5a8b
glibc's iconv implementation supports ISO-6937-2, but libiconv doesn't due to that these days the only place it's used is in a few old subtitle formats. As a result, on everything but linux we need our own converter. Conversion from ISO-6937-2 is currently not supported. Originally committed to SVN as r6632.
64 lines
1.4 KiB
Makefile
64 lines
1.4 KiB
Makefile
# $Id$
|
|
include ../Makefile.inc
|
|
|
|
|
|
LIB_SHARED = libaegisub-3.0.so
|
|
LIB_SHARED_INSTALL = yes
|
|
LIB_VERSION = 3
|
|
|
|
CXXFLAGS += -Iinclude -I../src -I.. -DLAGI -fPIC -Wno-variadic-macros
|
|
|
|
PRECOMPILED_HEADER_NAME = lagi_pre.h
|
|
lagi_pre.h.gch: CXXFLAGS := $(CXXFLAGS)
|
|
|
|
ifeq (yes, $(BUILD_DARWIN))
|
|
CXXFLAGS += -I/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Headers/
|
|
LIBS += -L../universalchardet -luniversalchardet
|
|
endif
|
|
|
|
common/charset_conv.o: CXXFLAGS += $(CFLAGS_ICONV)
|
|
unix/path.o: CXXFLAGS += -DP_DATA=\"$(P_DATA)\" -DP_DOC=\"$(P_DOC)\" -DP_LOCALE=\"$(P_LOCALE)\"
|
|
|
|
SRC += \
|
|
common/cajun/elements.cpp \
|
|
common/cajun/reader.cpp \
|
|
common/cajun/writer.cpp \
|
|
common/charset.cpp \
|
|
common/charset_6937.cpp \
|
|
common/charset_conv.cpp \
|
|
common/charset_ucd.cpp \
|
|
common/hotkey.cpp \
|
|
common/json.cpp \
|
|
common/mru.cpp \
|
|
common/option.cpp \
|
|
common/option_visit.cpp \
|
|
common/path.cpp \
|
|
common/keyframe.cpp \
|
|
common/util.cpp \
|
|
common/log.cpp \
|
|
common/thesaurus.cpp \
|
|
common/validator.cpp \
|
|
common/vfr.cpp \
|
|
unix/util.cpp \
|
|
unix/io.cpp \
|
|
unix/access.cpp \
|
|
unix/log.cpp \
|
|
unix/path.cpp
|
|
|
|
ifeq (yes, $(BUILD_DARWIN))
|
|
SRC += \
|
|
osx/util.cpp
|
|
endif
|
|
|
|
HEADER += \
|
|
*.h \
|
|
*/*.h \
|
|
include/libaegisub/*.h \
|
|
include/libaegisub/charsets.def \
|
|
include/libaegisub/cajun/*.h
|
|
|
|
EXTRA_DIST += osx/util.cpp
|
|
|
|
|
|
include ../Makefile.target
|
|
-include */*.d
|