2010-12-05 19:12:42 +00:00
|
|
|
include ../Makefile.inc
|
|
|
|
|
2012-08-21 07:02:45 -07:00
|
|
|
LIB = libaegisub.a
|
2010-12-05 19:12:42 +00:00
|
|
|
|
2012-01-08 01:04:05 +00:00
|
|
|
CXXFLAGS += -Iinclude -I../src -I.. -DLAGI -fPIC -Wno-variadic-macros
|
2013-01-19 07:16:48 -08:00
|
|
|
CPPFLAGS += $(CPPFLAGS_BOOST)
|
2010-12-05 19:12:42 +00:00
|
|
|
|
|
|
|
PRECOMPILED_HEADER_NAME = lagi_pre.h
|
|
|
|
lagi_pre.h.gch: CXXFLAGS := $(CXXFLAGS)
|
|
|
|
|
2011-01-08 17:46:46 +00:00
|
|
|
common/charset_conv.o: CXXFLAGS += $(CFLAGS_ICONV)
|
2013-10-02 16:27:33 -07:00
|
|
|
common/parser.o: CXXFLAGS += -ftemplate-depth=256
|
2011-02-08 04:22:52 +00:00
|
|
|
unix/path.o: CXXFLAGS += -DP_DATA=\"$(P_DATA)\" -DP_DOC=\"$(P_DOC)\" -DP_LOCALE=\"$(P_LOCALE)\"
|
2011-02-03 18:08:41 +00:00
|
|
|
|
2012-01-14 18:46:43 +00:00
|
|
|
SRC += \
|
2013-08-17 15:06:48 -07:00
|
|
|
common/parser.cpp \
|
2012-10-29 17:33:16 -07:00
|
|
|
ass/dialogue_parser.cpp \
|
2013-02-07 09:36:47 -08:00
|
|
|
ass/uuencode.cpp \
|
2011-12-22 21:10:10 +00:00
|
|
|
common/cajun/elements.cpp \
|
|
|
|
common/cajun/reader.cpp \
|
|
|
|
common/cajun/writer.cpp \
|
2012-10-31 19:49:29 -07:00
|
|
|
common/calltip_provider.cpp \
|
2010-12-05 19:12:42 +00:00
|
|
|
common/charset.cpp \
|
2012-03-29 19:04:49 +00:00
|
|
|
common/charset_6937.cpp \
|
2010-12-05 19:12:42 +00:00
|
|
|
common/charset_conv.cpp \
|
2012-10-26 07:09:14 -07:00
|
|
|
common/color.cpp \
|
2013-01-04 07:01:50 -08:00
|
|
|
common/dispatch.cpp \
|
|
|
|
common/fs.cpp \
|
Merge the dynamic menu, hotkey and toolbar branch to trunk. This doesn't include Windows support as vs2008 was being a major pain. This involves revisions r4921:4950, r4961:5002, r5005:5006, r5008:5056, r5062:5065, r5072, r5081:5082, r5087, r5096:5110, r5124:5125. Updates #1258.
Originally committed to SVN as r5126.
2011-01-05 13:00:46 +00:00
|
|
|
common/hotkey.cpp \
|
2012-10-21 07:57:48 -07:00
|
|
|
common/io.cpp \
|
Merge the dynamic menu, hotkey and toolbar branch to trunk. This doesn't include Windows support as vs2008 was being a major pain. This involves revisions r4921:4950, r4961:5002, r5005:5006, r5008:5056, r5062:5065, r5072, r5081:5082, r5087, r5096:5110, r5124:5125. Updates #1258.
Originally committed to SVN as r5126.
2011-01-05 13:00:46 +00:00
|
|
|
common/json.cpp \
|
2013-07-13 08:26:09 -07:00
|
|
|
common/kana_table.cpp \
|
|
|
|
common/karaoke_matcher.cpp \
|
2012-10-27 06:32:53 -07:00
|
|
|
common/keyframe.cpp \
|
2013-01-04 07:01:50 -08:00
|
|
|
common/log.cpp \
|
2010-12-05 19:12:42 +00:00
|
|
|
common/mru.cpp \
|
|
|
|
common/option.cpp \
|
|
|
|
common/option_visit.cpp \
|
2013-01-04 07:01:50 -08:00
|
|
|
common/path.cpp \
|
2012-01-08 01:36:50 +00:00
|
|
|
common/thesaurus.cpp \
|
2013-01-04 07:01:50 -08:00
|
|
|
common/util.cpp \
|
2010-12-05 19:12:42 +00:00
|
|
|
common/vfr.cpp \
|
|
|
|
unix/access.cpp \
|
2013-01-04 07:01:50 -08:00
|
|
|
unix/fs.cpp \
|
|
|
|
unix/log.cpp \
|
|
|
|
unix/path.cpp \
|
|
|
|
unix/util.cpp
|
2010-12-05 19:12:42 +00:00
|
|
|
|
|
|
|
ifeq (yes, $(BUILD_DARWIN))
|
2012-06-12 03:13:49 +00:00
|
|
|
SRC += osx/util.mm
|
2010-12-05 19:12:42 +00:00
|
|
|
endif
|
|
|
|
|
2012-01-14 18:46:43 +00:00
|
|
|
HEADER += \
|
|
|
|
*.h \
|
2010-12-05 19:12:42 +00:00
|
|
|
*/*.h \
|
2012-01-14 18:46:43 +00:00
|
|
|
include/libaegisub/*.h \
|
|
|
|
include/libaegisub/charsets.def \
|
|
|
|
include/libaegisub/cajun/*.h
|
|
|
|
|
2012-06-12 03:13:49 +00:00
|
|
|
EXTRA_DIST += osx/util.mm
|
2010-12-05 19:12:42 +00:00
|
|
|
|
|
|
|
include ../Makefile.target
|
2011-01-10 21:27:39 +00:00
|
|
|
-include */*.d
|