summaryrefslogtreecommitdiff
path: root/loaders
diff options
context:
space:
mode:
authorGarrett Regier <garrettregier@gmail.com>2015-02-14 13:04:52 -0800
committerGarrett Regier <garrettregier@gmail.com>2015-02-14 13:04:52 -0800
commit1242e95949952aa50962aa238a133aa2b80fdf0a (patch)
tree2048ad9dd652196b39fa64774314dc4706e93ad5 /loaders
parent728ecb4708f4fa4f0545e4b3907b59cddd5f4c54 (diff)
downloadlibpeas-1242e95949952aa50962aa238a133aa2b80fdf0a.tar.gz
Fix distcheck
Diffstat (limited to 'loaders')
-rw-r--r--loaders/lua5.1/Makefile.am1
-rw-r--r--loaders/lua5.1/resources/Makefile.am12
2 files changed, 9 insertions, 4 deletions
diff --git a/loaders/lua5.1/Makefile.am b/loaders/lua5.1/Makefile.am
index 49fe82f..24405e3 100644
--- a/loaders/lua5.1/Makefile.am
+++ b/loaders/lua5.1/Makefile.am
@@ -37,7 +37,6 @@ peas-lua-resources.c: $(srcdir)/resources/peas-lua.gresource.xml $(loader_resour
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --internal --target=$@ --sourcedir=$(srcdir)/resources --generate-source $(srcdir)/resources/peas-lua.gresource.xml
EXTRA_DIST = \
- peas-lua.gresource.xml \
$(loader_resources_deps)
CLEANFILES = peas-lua-resources.c
diff --git a/loaders/lua5.1/resources/Makefile.am b/loaders/lua5.1/resources/Makefile.am
index 710581e..a06bdd6 100644
--- a/loaders/lua5.1/resources/Makefile.am
+++ b/loaders/lua5.1/resources/Makefile.am
@@ -1,7 +1,8 @@
-LUAC_FILES = \
- peas-lua-internal.luac \
- peas-lua-strict.luac
+LUA_FILES = \
+ peas-lua-internal.lua \
+ peas-lua-strict.lua
+LUAC_FILES = $(addsuffix c,$(LUA_FILES))
%.luac: %.lua
$(AM_V_GEN) $(LUA51_BIN) $(srcdir)/peas-lua-compile.lua $< $@
@@ -11,3 +12,8 @@ all-local: $(LUAC_FILES)
CLEANFILES = \
$(LUAC_FILES)
+EXTRA_DIST = \
+ peas-lua-compile.lua \
+ peas-lua.gresource.xml \
+ $(LUA_FILES)
+