fix make distcheck errors

This commit is contained in:
ChunEon Park 2014-10-31 22:24:19 +09:00
parent e2b9118c49
commit ed0da0ab10
4 changed files with 11 additions and 9 deletions

View File

@ -5,6 +5,7 @@ bin_PROGRAMS = enventor
AM_CPPFLAGS = -DPACKAGE_DATA_DIR=\"$(pkgdatadir)\" \
-DPACKAGE_BIN_DIR=\"$(bindir)\" \
-DPACKAGE_LIB_DIR=\"$(libdir)\" \
-I$(top_srcdir)/src/lib \
-I$(top_srcdir)/src/bin \
-I$(top_srcdir)/src/include \
@ENVENTOR_CFLAGS@

View File

@ -3,8 +3,6 @@ MAINTAINERCLEANFILES = Makefile.in
EXTRA_DIST = common.h \
base_gui.h \
config_data.h \
dummy_obj.h \
edj_viewer.h \
menu.h \
panes.h \
statusbar.h \

View File

@ -14,11 +14,11 @@ extern "C"
#include <Elementary.h>
#ifndef EFL_NOLEGACY_API_SUPPORT
#include "Enventor_Legacy.h"
#include <Enventor_Legacy.h>
#endif
#ifdef EFL_EO_API_SUPPORT
#include "Enventor_Eo.h"
#include <Enventor_Eo.h>
#endif
EAPI int enventor_init(int argc, char **argv);

View File

@ -19,12 +19,15 @@ AM_CPPFLAGS = -DPACKAGE_DATA_DIR=\"$(pkgdatadir)\" \
lib_LTLIBRARIES = libenventor.la
includes_HEADERS = \
Enventor.h \
Enventor_Legacy.h \
Enventor.h \
Enventor_Eo.h
includesdir = $(includedir)/enventor-@ENVENTOR_VERSION_MAJOR@
libenventor_la_SOURCES = \
enventor_private.h \
auto_comp_code.h \
template_code.h \
enventor_main.c \
enventor_smart.c \
edc_parser.c \
@ -36,10 +39,10 @@ libenventor_la_SOURCES = \
edc_editor.c \
auto_comp.c \
build.c \
template.c \
edj_mgr.c \
edj_viewer.c \
dummy_obj.c
template.c \
edj_mgr.c \
edj_viewer.c \
dummy_obj.c
libenventor_la_CFLAGS = @ENVENTOR_CFLAGS@
libenventor_la_LIBADD = @ENVENTOR_LIBS@