From 7fe60435bce6595a9c58a9bfd8244d74b5320e96 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 15 Jan 2013 08:46:13 +0100 Subject: Import DirectFB141_2k11R3_beta5 --- Source/SaWMan/src/Makefile.am | 62 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100755 Source/SaWMan/src/Makefile.am (limited to 'Source/SaWMan/src/Makefile.am') diff --git a/Source/SaWMan/src/Makefile.am b/Source/SaWMan/src/Makefile.am new file mode 100755 index 0000000..7cdfd29 --- /dev/null +++ b/Source/SaWMan/src/Makefile.am @@ -0,0 +1,62 @@ +## Makefile.am for SaWMan/src + +INCLUDES = \ + -I$(top_builddir)/include \ + -I$(top_builddir)/src \ + -I$(top_srcdir)/include \ + -I$(top_srcdir)/src \ + $(DFB_CFLAGS) + +AM_CPPFLAGS = \ + -DDATADIR=\"${RUNTIME_SYSROOT}@DATADIR@\" \ + -DMODULEDIR=\"${RUNTIME_SYSROOT}@MODULEDIR@\" \ + -DSYSCONFDIR=\"@sysconfdir@\" + + +lib_LTLIBRARIES = libsawman.la + +libsawman_la_SOURCES = \ + isawman.c \ + isawman.h \ + isawmanmanager.c \ + isawmanmanager.h \ + sawman.c \ + sawman_internal.h \ + sawman_draw.c \ + sawman_draw.h \ + sawman_config.c \ + sawman_config.h + +libsawman_la_LIBADD = \ + $(DFB_LIBS) + +libsawman_la_LDFLAGS = \ + -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ + -release $(LT_RELEASE) + + +# +## and now rebuild the static version with the *correct* object files +# +if BUILD_STATIC + +clean-local: + rm -f libsawman_fixed.a + +all-local: libsawman_fixed.a + +libsawman_fixed.a: .libs/libsawman.a + rm -f libsawman_fixed.a + ${AR} cru libsawman_fixed.a `find . -name "*.o" | grep -v '.libs'` + ${RANLIB} libsawman_fixed.a + cp -pf libsawman_fixed.a .libs/libsawman.a + +.libs/libsawman.a: libsawman.la + +else + +clean-local: + +all-local: + +endif -- cgit