summaryrefslogtreecommitdiff
path: root/src/Makefile_Elua.am
Commit message (Collapse)AuthorAgeFilesLines
* docs: move all of serializers to doctreeDaniel Kolesa2016-08-171-1/+0
|
* docs: remove the mappings moduleDaniel Kolesa2016-08-151-1/+0
|
* docs: initial documentation treeDaniel Kolesa2016-08-091-0/+1
| | | | | This will abstract away Eolian APIs to get more maintaineable code. For now, the Eolian_Documentation structure is abstracted away.
* elua: add table serializer/deserializerDaniel Kolesa2016-07-291-0/+1
| | | | This is important for docgen use (reading theme configs).
* docs: split type serializers and keyword ref into their own module in docgenDaniel Kolesa2016-07-221-0/+2
|
* docs: split off writer and utils into modules in docgenDaniel Kolesa2016-07-201-1/+3
|
* docs: begin modularizing the doc generator scriptDaniel Kolesa2016-07-201-3/+5
|
* build: split EXTRA_DIST files in src/ off from DISTFILES and handle separatelyStefan Schmidt2016-06-101-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | This is again to avoid the "Argument list too long" error we are hitting more and more now. Given we just merged elementary, emotion generic players, evas generic loaders and elm_code it is not surprising we are hitting it again. This time the number of files being hold in DISTFILES has just grown to big so a make dist was no longer possible. If one looks at what the DISTFILES variable from automake holds you can image it grows a lot with all the source files plus generated files we have in tree now. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) To cut off a big chunk but still keep all the other automagic in place for SOURCE files I went and renamed the EXTRA_DIST in src/ to EXTRA_DIST2 and handle the files in a dist-hook now. Another thing to note here is that this also only happens as we have the one big Makefile with includes. If we go back to per directory Makefiles this problem should vanish as well. In any case we need a solution for 1.18 now and this is what I have to offer. If you have a cleaner solution in mind feel welcome to test it out and if everything we need keeps working (make, make examples, make check, make benchmark, make dist and make distcheck) go ahead.
* elua: install the docgen appDaniel Kolesa2016-05-121-0/+8
|
* elua: remove obsolete xgettext wrapperDaniel Kolesa2015-07-011-11/+1
|
* elua: use a minimal app to avoid loading eolian at runtimeDaniel Kolesa2015-05-071-1/+3
| | | | | | Otherwise it would fail on systems with no Eolian installed. @fix
* elua lib: tests for core dirs + fix core dirsDaniel Kolesa2015-05-061-0/+9
|
* elua lib: add test suiteDaniel Kolesa2015-05-061-0/+29
|
* elua: remove elua_prefix from main runtimeDaniel Kolesa2015-05-061-3/+1
|
* elua: remove EFL_RUN_IN_TREE hack (pass cmdline args)Daniel Kolesa2015-05-061-2/+0
|
* elua: remove main.h (launcher is only 1 C file now)Daniel Kolesa2014-12-121-1/+0
|
* elua: move caching into the libraryDaniel Kolesa2014-12-121-2/+2
|
* elua: move io extensions to libraryDaniel Kolesa2014-12-121-3/+4
|
* elua: move core scripts to src/scriptsDaniel Kolesa2014-12-111-11/+11
|
* elua: add initial pieces of the libraryDaniel Kolesa2014-12-111-1/+6
|
* build fix for elua binary when using -jXMike Blumenkrantz2014-12-081-1/+1
| | | | | libtool: link: cannot find the library `lib/elua/libelua.la' or unhandled argument `lib/elua/libelua.la' make[2]: *** [bin/elua/elua] Error 1
* elua: add pkg-config for the elua libraryDaniel Kolesa2014-12-081-2/+2
|
* elua: initial skeleton for the Elua libraryDaniel Kolesa2014-12-081-0/+18
| | | | | | Because of Bob and other things, it is required to separate the functionality currently provided by the elua binary into a library. This library will then be used by the elua binary as well as any other project.
* elua/autotools: unbork (forgot to remove this)Daniel Kolesa2014-10-101-1/+0
|
* elua/autotools: generate .eo.lua files out of all eo files at build timeDaniel Kolesa2014-10-061-1/+1
| | | | | Also change the generator a bit so that it doesn't rely on lib name information and fix the runtime to properly source lua files within tree.
* Fix Elua compiling on OSXJean Guyomarc'h2014-07-251-0/+7
| | | | | | | | | | Reviewers: cedric, raster, raoulh, q66 Reviewed By: q66 Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1231
* autotools: Fixed 'make examples' and 'make examples-install'Savio Sena2014-07-021-1/+1
| | | | | It was broken in set-ups with ($(builddir) != $(srcdir)) && ($(builddir) != $(srcdir)/build)
* elua: fix installation of xgettext/generatorDaniel Kolesa2014-06-161-1/+2
|
* elua: remove leftoverDaniel Kolesa2014-06-101-5/+0
|
* elua: fixes, expand wildcardsDaniel Kolesa2014-06-101-14/+38
|
* elua: didn't want thisDaniel Kolesa2014-06-101-1/+0
|
* elua: some janitoring (add newlines to the end of files)Daniel Kolesa2014-06-101-0/+1
|
* elua: install appsDaniel Kolesa2014-06-101-0/+7
|
* elua: use eina_prefixDaniel Kolesa2014-06-101-4/+4
|
* elua: preparation for lua file generationDaniel Kolesa2014-06-101-0/+3
|
* evil: add fork, adjust elua to use thatDaniel Kolesa2014-06-101-0/+4
|
* elua: popenv functionDaniel Kolesa2014-06-101-1/+2
|
* elua: support the EFL_RUN_IN_TREE environment variableDaniel Kolesa2014-06-101-1/+2
|
* elua: i18n/l10n support including gettext module for user apps, bump gettext ↵Daniel Kolesa2014-06-101-1/+2
| | | | requirement to 0.18.3 (required for lua support in xgettext)
* elua: install all the modulesDaniel Kolesa2014-06-101-4/+10
|
* elua: overridable core+modules directory paths (via command line argument or ↵Daniel Kolesa2014-06-101-1/+2
| | | | environment variables) plus support for extra lib paths via -L
* elua: start binding EinaDaniel Kolesa2014-06-101-4/+18
| | | | Added initial eina logging module, added library handling utility funcs in util.lua, added .gitignores
* Elua: initial commitDaniel Kolesa2014-06-101-0/+22
Elua is a LuaJIT based runtime for the EFL meant to provide facilities for rapid application development. The name is temporary. The EFL bindings will be generated with Eolian. @feature