diff options
author | Carsten Haitzler <raster@rasterman.com> | 2012-11-09 10:45:35 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2012-11-09 10:45:35 +0000 |
commit | 5fa813e1cc44168ddb88ad12adec04059e93bb9d (patch) | |
tree | 0b860fcae4757880746fcefb328c80aae62dfb18 /src/modules/backlight | |
parent | 29e6c350e4e26acab79564aa68a33d2ca8547cae (diff) | |
download | enlightenment-5fa813e1cc44168ddb88ad12adec04059e93bb9d.tar.gz |
lucas... u're going to hate me... but i'm reverting this whole lot of
module build chnages because its fundamentally broken. it DOES NOT
PRODUCE .SO FILES. just .la and .a files. the only reason u dont
notice is.. you ALREADY had .so's installed. i just got in from the
airport... synced and updated.. rebuilt and was met with all modules
not loading... literally - no .so's are installed int he module dirs.
try rm -rf the instaleld module tree.
regardless... this has to be reverted be3cause it's a major break. the
idea is right/nice. the implementation is causing... problems.
SVN revision: 79015
Diffstat (limited to 'src/modules/backlight')
-rw-r--r-- | src/modules/backlight/Makefile.am | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/modules/backlight/Makefile.am b/src/modules/backlight/Makefile.am new file mode 100644 index 0000000000..d7f9dbc436 --- /dev/null +++ b/src/modules/backlight/Makefile.am @@ -0,0 +1,28 @@ +MAINTAINERCLEANFILES = Makefile.in +MODULE = backlight + +# data files for the module +filesdir = $(libdir)/enlightenment/modules/$(MODULE) +files_DATA = \ +e-module-$(MODULE).edj module.desktop + +EXTRA_DIST = $(files_DATA) + +# the module .so file +AM_CPPFLAGS = -I. \ + -I$(top_srcdir) \ + -I$(top_srcdir)/src/modules/$(MODULE) \ + -I$(top_srcdir)/src/bin \ + -I$(top_builddir)/src/bin \ + -I$(top_srcdir)/src/modules \ + @e_cflags@ +pkgdir = $(libdir)/enlightenment/modules/$(MODULE)/$(MODULE_ARCH) +pkg_LTLIBRARIES = module.la +module_la_SOURCES = e_mod_main.c \ + e_mod_main.h +module_la_LIBADD = @e_libs@ @dlopen_libs@ +module_la_LDFLAGS = -module -avoid-version +module_la_DEPENDENCIES = $(top_builddir)/config.h + +uninstall: + rm -rf $(DESTDIR)$(libdir)/enlightenment/modules/$(MODULE) |