- install the e headers into $(includedir)/enlightenment. hopefully should

be able to make e modules outside the e tree now.


SVN revision: 12426
This commit is contained in:
Dan Sinclair 2004-12-09 19:33:51 +00:00 committed by Dan Sinclair
parent e903945904
commit c6b5abbf60
2 changed files with 34 additions and 30 deletions

View File

@ -39,9 +39,7 @@ while test $# -gt 0; do
echo @VERSION@
;;
--cflags)
if test @includedir@ != /usr/include ; then
includes=-I@includedir@
fi
includes=-I@includedir@/enlightenment
echo $includes
;;
--libs)

View File

@ -8,61 +8,64 @@ INCLUDES = -I$(includedir) \
bin_PROGRAMS = enlightenment enlightenment_remote enlightenment_eapp
enlightenment_SOURCES = \
ENLIGHTENMENTHEADERS = \
e.h \
e_file.h \
e_user.h \
e_manager.h \
e_path.h \
e_init.h \
e_ipc.h \
e_error.h \
e_container.h \
e_desk.h \
e_border.h \
e_pointer.h \
e_config.h \
e_menu.h \
e_object.h \
e_icon.h \
e_box.h \
e_int_menus.h \
e_module.h \
e_apps.h \
e_atoms.h \
e_utils.h \
e_canvas.h \
e_focus.h \
e_place.h \
e_resist.h \
e_startup.h
enlightenment_SOURCES = \
e_file.c \
e_main.c \
e_user.h \
e_user.c \
e_manager.h \
e_manager.c \
e_path.h \
e_path.c \
e_init.h \
e_init.c \
e_ipc.h \
e_ipc.c \
e_error.h \
e_error.c \
e_container.h \
e_container.c \
e_desk.h \
e_desk.c \
e_border.h \
e_border.c \
e_pointer.h \
e_pointer.c \
e_config.h \
e_config.c \
e_menu.h \
e_menu.c \
e_object.h \
e_object.c \
e_icon.h \
e_icon.c \
e_box.h \
e_box.c \
e_int_menus.h \
e_int_menus.c \
e_module.h \
e_module.c \
e_apps.h \
e_apps.c \
e_atoms.h \
e_atoms.c \
e_utils.h \
e_utils.c \
e_canvas.h \
e_canvas.c \
e_focus.h \
e_focus.c \
e_place.h \
e_place.c \
e_resist.h \
e_resist.c \
e_startup.h \
e_startup.c
e_startup.c \
$(ENLIGHTENMENTHEADERS)
enlightenment_LDFLAGS = -export-dynamic @e_libs@ @dlopen_libs@
@ -77,3 +80,6 @@ e.h \
e_eapp_main.c
enlightenment_eapp_LDFLAGS = @e_libs@ @dlopen_libs@
installed_headersdir = $(prefix)/include/enlightenment
installed_headers_DATA = $(ENLIGHTENMENTHEADERS)