[osx] Clean up Makefile.am

The OS X backend Makefile.am was missing a line concatenation, and
so the -xobjective-c directive was always ignored.

Instead of dumping everything into INCLUDES and LDADD we should follow
what the rest of the backends do, and use per-target CFLAGS and LDADD,
and reserve the INCLUDES to -D and -I directives.

Thanks to: Christian Hergert <chris@dronelabs.com>
This commit is contained in:
Emmanuele Bassi 2009-08-11 13:11:34 +01:00
parent d0748b3b9b
commit dfc32b60c4

View File

@ -6,16 +6,14 @@ INCLUDES = \
-DCLUTTER_COMPILATION \ -DCLUTTER_COMPILATION \
-I$(top_srcdir) \ -I$(top_srcdir) \
-I$(top_srcdir)/clutter \ -I$(top_srcdir)/clutter \
-I$(top_builddir)/clutter \ -I$(top_builddir)/clutter
$(CLUTTER_CFLAGS) \
$(CLUTTER_DEBUG_CFLAGS) \
$(MAINTAINER_CFLAGS)
-xobjective-c
LDADD = $(CLUTTER_LIBS) common_ldadd = $(CLUTTER_LIBS)
noinst_LTLIBRARIES = libclutter-osx.la noinst_LTLIBRARIES = libclutter-osx.la
libclutter_osx_la_CFLAGS = $(CLUTTER_CFLAGS) $(CLUTTER_DEBUG_CFLAGS) $(MAINTAINER_CFLAGS) -xobjective-c
libclutter_osx_la_LDADD = $(common_ldadd)
libclutter_osx_la_SOURCES = \ libclutter_osx_la_SOURCES = \
clutter-backend-osx.h \ clutter-backend-osx.h \
clutter-backend-osx.c \ clutter-backend-osx.c \