lets have a Makefile.am shall we?
authorCarsten Haitzler <raster@rasterman.com>
Mon, 25 Apr 2011 02:28:42 +0000 (02:28 +0000)
committerCarsten Haitzler <raster@rasterman.com>
Mon, 25 Apr 2011 02:28:42 +0000 (02:28 +0000)
SVN revision: 58882

legacy/evas/src/modules/loaders/psd/Makefile.am [new file with mode: 0644]

diff --git a/legacy/evas/src/modules/loaders/psd/Makefile.am b/legacy/evas/src/modules/loaders/psd/Makefile.am
new file mode 100644 (file)
index 0000000..8b06348
--- /dev/null
@@ -0,0 +1,33 @@
+
+MAINTAINERCLEANFILES = Makefile.in
+
+AM_CPPFLAGS = \
+-I. \
+-I$(top_srcdir)/src/lib \
+-I$(top_srcdir)/src/lib/include \
+@FREETYPE_CFLAGS@ \
+@PIXMAN_CFLAGS@ \
+@EINA_CFLAGS@ \
+@EVIL_CFLAGS@ \
+@WIN32_CPPFLAGS@
+
+if BUILD_LOADER_PSD
+if !EVAS_STATIC_BUILD_PSD
+
+pkgdir = $(libdir)/evas/modules/loaders/psd/$(MODULE_ARCH)
+pkg_LTLIBRARIES = module.la
+
+module_la_SOURCES = evas_image_load_psd.c
+
+module_la_LIBADD = @EINA_LIBS@ @EVIL_LIBS@ $(top_builddir)/src/lib/libevas.la
+module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version
+module_la_LIBTOOLFLAGS = --tag=disable-static
+
+else
+
+noinst_LTLIBRARIES = libevas_loader_psd.la
+libevas_loader_psd_la_SOURCES = evas_image_load_psd.c
+libevas_loader_psd_la_LIBADD = 
+
+endif
+endif