e: use AM_CPPFLAGS instead of INCLUDES

Get rid of warnings like below with recent automake (1.11 and newer):
src/bin/Makefile.am:6: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/bin/Makefile.am: installing './depcomp'
src/modules/access/Makefile.am:11: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')



SVN revision: 78720
devs/princeamd/enlightenment-0.17-elive
Lucas De Marchi 11 years ago
parent 8afe8dcff4
commit 92eee9068a
  1. 7
      src/bin/Makefile.am
  2. 2
      src/modules/access/Makefile.am
  3. 2
      src/modules/backlight/Makefile.am
  4. 4
      src/modules/battery/Makefile.am
  5. 2
      src/modules/clock/Makefile.am
  6. 2
      src/modules/comp/Makefile.am
  7. 2
      src/modules/conf/Makefile.am
  8. 2
      src/modules/conf_applications/Makefile.am
  9. 2
      src/modules/conf_dialogs/Makefile.am
  10. 2
      src/modules/conf_display/Makefile.am
  11. 2
      src/modules/conf_edgebindings/Makefile.am
  12. 2
      src/modules/conf_interaction/Makefile.am
  13. 2
      src/modules/conf_intl/Makefile.am
  14. 2
      src/modules/conf_keybindings/Makefile.am
  15. 2
      src/modules/conf_menus/Makefile.am
  16. 2
      src/modules/conf_paths/Makefile.am
  17. 2
      src/modules/conf_performance/Makefile.am
  18. 2
      src/modules/conf_randr/Makefile.am
  19. 2
      src/modules/conf_shelves/Makefile.am
  20. 2
      src/modules/conf_theme/Makefile.am
  21. 2
      src/modules/conf_wallpaper2/Makefile.am
  22. 2
      src/modules/conf_window_manipulation/Makefile.am
  23. 2
      src/modules/conf_window_remembers/Makefile.am
  24. 2
      src/modules/connman/Makefile.am
  25. 2
      src/modules/cpufreq/Makefile.am
  26. 2
      src/modules/dropshadow/Makefile.am
  27. 2
      src/modules/everything/Makefile.am
  28. 2
      src/modules/fileman/Makefile.am
  29. 2
      src/modules/fileman_opinfo/Makefile.am
  30. 2
      src/modules/gadman/Makefile.am
  31. 2
      src/modules/ibar/Makefile.am
  32. 2
      src/modules/ibox/Makefile.am
  33. 2
      src/modules/illume-bluetooth/Makefile.am
  34. 2
      src/modules/illume-home-toggle/Makefile.am
  35. 2
      src/modules/illume-home/Makefile.am
  36. 2
      src/modules/illume-indicator/Makefile.am
  37. 2
      src/modules/illume-kbd-toggle/Makefile.am
  38. 2
      src/modules/illume-keyboard/Makefile.am
  39. 2
      src/modules/illume-mode-toggle/Makefile.am
  40. 2
      src/modules/illume-softkey/Makefile.am
  41. 2
      src/modules/illume2/Makefile.am
  42. 2
      src/modules/illume2/policies/illume/Makefile.am
  43. 2
      src/modules/illume2/policies/tablet/Makefile.am
  44. 2
      src/modules/layout/Makefile.am
  45. 4
      src/modules/mixer/Makefile.am
  46. 2
      src/modules/msgbus/Makefile.am
  47. 2
      src/modules/notification/Makefile.am
  48. 2
      src/modules/pager/Makefile.am
  49. 2
      src/modules/physics/Makefile.am
  50. 2
      src/modules/quickaccess/Makefile.am
  51. 2
      src/modules/shot/Makefile.am
  52. 2
      src/modules/start/Makefile.am
  53. 2
      src/modules/syscon/Makefile.am
  54. 2
      src/modules/systray/Makefile.am
  55. 2
      src/modules/tasks/Makefile.am
  56. 2
      src/modules/temperature/Makefile.am
  57. 2
      src/modules/tiling/Makefile.am
  58. 2
      src/modules/winlist/Makefile.am
  59. 2
      src/modules/wizard/Makefile.am
  60. 2
      src/modules/wl_drm/Makefile.am
  61. 2
      src/modules/wl_screenshot/Makefile.am
  62. 2
      src/modules/wl_shell/Makefile.am
  63. 2
      src/modules/xkbswitch/Makefile.am

@ -3,7 +3,7 @@ SUBDIRS = e_fm
MAINTAINERCLEANFILES = Makefile.in
DISTCLEANFILES = e_fm_shared_types.h
INCLUDES = \
AM_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_builddir)/src/bin \
-I$(top_srcdir) \
@ -357,7 +357,7 @@ e_xsettings.c \
e_zone.c \
$(ENLIGHTENMENTHEADERS)
enlightenment_CPPFLAGS = -DE_LOGGING=1
enlightenment_CPPFLAGS = $(AM_CPPFLAGS) -DE_LOGGING=1
enlightenment_SOURCES = \
e_main.c \
$(enlightenment_src)
@ -375,7 +375,7 @@ enlightenment_imc_LDADD = @E_IMC_LIBS@
enlightenment_start_SOURCES = \
e_start_main.c
enlightenment_start_CFLAGS = $(INCLUDES) @E_START_CFLAGS@
enlightenment_start_CFLAGS = $(AM_CPPFLAGS) @E_START_CFLAGS@
enlightenment_start_LDADD = @dlopen_libs@ @E_START_LIBS@
enlightenment_thumb_SOURCES = \
@ -389,7 +389,6 @@ enlightenment_fm_op_SOURCES = \
e_fm_op.c
enlightenment_fm_op_LDADD = @E_FM_OP_LIBS@
enlightenment_fm_op_CFLAGS = $(INCLUDES)
enlightenment_sys_SOURCES = \
e_sys_main.c

@ -8,7 +8,7 @@ files_DATA = module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -19,7 +19,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \
@ -28,7 +28,7 @@ INCLUDES = -I. \
@e_cflags@ \
@cf_cflags@
if HAVE_ENOTIFY
INCLUDES += @ENOTIFY_CFLAGS@
AM_CPPFLAGS += @ENOTIFY_CFLAGS@
endif
pkgdir = $(libdir)/enlightenment/modules/$(MODULE)/$(MODULE_ARCH)

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -8,7 +8,7 @@ files_DATA = module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -10,7 +10,7 @@ files_DATA = \
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-conf_winmanip.edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -11,7 +11,7 @@ module.desktop
EXTRA_DIST = $(files_DATA) everything.pc.in module.desktop.in
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -8,7 +8,7 @@ files_DATA = e-module-gadman.edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -21,7 +21,7 @@ EXTRA_DIST = \
module.desktop.in
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -22,7 +22,7 @@ EXTRA_DIST = \
module.desktop.in
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -21,7 +21,7 @@ EXTRA_DIST = \
module.desktop.in
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -21,7 +21,7 @@ EXTRA_DIST = \
module.desktop.in
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -3,7 +3,7 @@ MODULE = illume2
POLICY = illume
# the module .so file
INCLUDES = -I.. \
AM_CPPFLAGS = -I.. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/modules/$(MODULE)/policies/$(POLICY) \

@ -3,7 +3,7 @@ MODULE = illume2
POLICY = tablet
# the module .so file
INCLUDES = -I.. \
AM_CPPFLAGS = -I.. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/modules/$(MODULE)/policies/$(POLICY) \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -8,7 +8,7 @@ files_DATA = e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \
@ -16,7 +16,7 @@ INCLUDES = -I. \
-I$(top_srcdir)/src/modules \
@e_cflags@ @SOUND_CFLAGS@
if HAVE_ENOTIFY
INCLUDES += @ENOTIFY_CFLAGS@
AM_CPPFLAGS += @ENOTIFY_CFLAGS@
endif
pkgdir = $(libdir)/enlightenment/modules/$(MODULE)/$(MODULE_ARCH)

@ -5,7 +5,7 @@ MODULE = msgbus
filesdir = $(libdir)/enlightenment/modules/$(MODULE)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -8,7 +8,7 @@ files_DATA = e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -8,7 +8,7 @@ files_DATA = e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -15,7 +15,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -19,7 +19,7 @@ e-module-$(MODULE).edj: e-module-$(MODULE).edc
$(top_builddir)/src/modules/$(MODULE)/e-module-$(MODULE).edj
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -26,7 +26,7 @@ data/desktop/tmp.desktop
EXTRA_DIST = $(files_DATA) $(desks_DATA) $(favs_DATA) $(desktop_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin/e_wayland \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin/e_wayland \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin/e_wayland \

@ -9,7 +9,7 @@ e-module-$(MODULE).edj module.desktop
EXTRA_DIST = $(files_DATA)
# the module .so file
INCLUDES = -I. \
AM_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/modules/$(MODULE) \
-I$(top_srcdir)/src/bin \

Loading…
Cancel
Save