2013-01-03 05:29:08 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
2013-03-28 16:16:12 -05:00
|
|
|
$(eval $(call gb_Executable_Executable,LibreOffice))
|
2013-01-03 05:29:08 -06:00
|
|
|
|
2013-03-28 16:16:12 -05:00
|
|
|
$(eval $(call gb_Executable_use_api,LibreOffice,\
|
2013-01-03 05:29:08 -06:00
|
|
|
udkapi \
|
|
|
|
offapi \
|
|
|
|
))
|
|
|
|
|
2013-03-28 16:16:12 -05:00
|
|
|
$(eval $(call gb_Executable_use_externals,LibreOffice,\
|
2013-01-30 03:42:47 -06:00
|
|
|
boost_headers \
|
2013-01-03 05:29:08 -06:00
|
|
|
iconv \
|
|
|
|
zlib \
|
|
|
|
))
|
|
|
|
|
2013-03-28 16:16:12 -05:00
|
|
|
$(eval $(call gb_Executable_use_system_darwin_frameworks,LibreOffice,\
|
2013-01-03 05:29:08 -06:00
|
|
|
Foundation \
|
|
|
|
CoreFoundation \
|
|
|
|
CoreGraphics \
|
|
|
|
CoreText \
|
|
|
|
UIKit \
|
|
|
|
))
|
|
|
|
|
2013-03-28 16:16:12 -05:00
|
|
|
$(eval $(call gb_Executable_add_objcxxobjects,LibreOffice,\
|
|
|
|
ios/experimental/LibreOffice/LibreOffice/lo \
|
2013-01-03 05:29:08 -06:00
|
|
|
))
|
|
|
|
|
2013-03-28 16:16:12 -05:00
|
|
|
$(eval $(call gb_Executable_add_objcobjects,LibreOffice,\
|
|
|
|
ios/experimental/LibreOffice/LibreOffice/AppDelegate \
|
|
|
|
ios/experimental/LibreOffice/LibreOffice/main \
|
|
|
|
ios/experimental/LibreOffice/LibreOffice/View \
|
|
|
|
ios/experimental/LibreOffice/LibreOffice/ViewController \
|
2013-03-20 02:07:52 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
# Mark the executable as depending on all libraries so that it gets
|
|
|
|
# rebuilt if any library has been rebuilt. Avoids need for "make
|
|
|
|
# ios.clean".
|
|
|
|
|
2013-04-19 01:27:44 -05:00
|
|
|
$(call gb_LinkTarget_get_target,Executable/LibreOffice) : $(wildcard $(OUTDIR)/lib/lib*.a)
|
2013-03-20 02:07:52 -05:00
|
|
|
|
2013-01-03 05:29:08 -06:00
|
|
|
# vim: set ts=4 sw=4 et:
|