summaryrefslogtreecommitdiff
path: root/src/Makefile_Eolian_Cxx.am
diff options
context:
space:
mode:
authorSavio Sena <savio.sena@acm.org>2014-05-26 15:47:44 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2014-05-26 15:47:44 +0900
commit6bfa07cb2f209e914129e6e26d7f6edd2d42498e (patch)
treeb8968f715537a6fca62d243feb323733ab7467b4 /src/Makefile_Eolian_Cxx.am
parent58bdac7977af96f88469c091856921aa2645b945 (diff)
downloadefl-6bfa07cb2f209e914129e6e26d7f6edd2d42498e.tar.gz
autotools: Fix eolianc-xx header distribution.
Summary: Sorry, last patch added the headers to the correct relative location but replaced dist with nodist which is incorrect. nodist is for generated headers only. Reviewers: cedric, raster Reviewed By: raster CC: felipealmeida, smohanty, cedric Differential Revision: https://phab.enlightenment.org/D898
Diffstat (limited to 'src/Makefile_Eolian_Cxx.am')
-rw-r--r--src/Makefile_Eolian_Cxx.am7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Makefile_Eolian_Cxx.am b/src/Makefile_Eolian_Cxx.am
index 505330a076..82de3ff303 100644
--- a/src/Makefile_Eolian_Cxx.am
+++ b/src/Makefile_Eolian_Cxx.am
@@ -2,17 +2,17 @@
### Library
installed_eoliancxxmainheadersdir = $(includedir)/eolian-cxx-@VMAJ@/
-nodist_installed_eoliancxxmainheaders_DATA = \
+dist_installed_eoliancxxmainheaders_DATA = \
lib/eolian_cxx/Eolian_Cxx.hh
installed_eoliancxxheadersdir = $(includedir)/eolian-cxx-@VMAJ@/
-nodist_installed_eoliancxxheaders_DATA = \
+dist_installed_eoliancxxheaders_DATA = \
lib/eolian_cxx/eo_generate.hh \
lib/eolian_cxx/eo_types.hh \
lib/eolian_cxx/eo_validate.hh
installed_eoliancxxgrammarheadersdir = $(includedir)/eolian-cxx-@VMAJ@/grammar/
-nodist_installed_eoliancxxgrammarheaders_DATA = \
+dist_installed_eoliancxxgrammarheaders_DATA = \
lib/eolian_cxx/grammar/comment.hh \
lib/eolian_cxx/grammar/eo_class_constructors_generator.hh \
lib/eolian_cxx/grammar/eo_class_events.generator.hh \
@@ -39,6 +39,7 @@ bin_eolian_cxx_eolian_cxx_SOURCES = \
bin/eolian_cxx/eolian_cxx.cc
bin_eolian_cxx_eolian_cxx_CXXFLAGS = -I$(top_builddir)/src/lib/efl \
+-I$(top_srcdir)/src/lib/eolian_cxx/ \
@CHECK_CFLAGS@ @EINA_CFLAGS@ @EINA_CXX_CFLAGS@ @EO_CFLAGS@ \
@EOLIAN_CXX_CFLAGS@ @EOLIAN_CFLAGS@