mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 16:16:20 -05:00
94e2c7a949
Instead of doing the shlib trick, build ClutterJson (if needed) inside the top-level clutter/ directory - similar to a non-recursive layout. Hopefully, one day, we'll be able to do this with a real non-recursive layout.
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
source_c = \
|
|
$(srcdir)/json-array.c \
|
|
$(srcdir)/json-generator.c \
|
|
$(srcdir)/json-marshal.c \
|
|
$(srcdir)/json-node.c \
|
|
$(srcdir)/json-object.c \
|
|
$(srcdir)/json-parser.c
|
|
|
|
source_h = \
|
|
$(top_srcdir)/clutter/json/json-generator.h \
|
|
$(top_srcdir)/clutter/json/json-glib.h \
|
|
$(top_srcdir)/clutter/json/json-marshal.h \
|
|
$(top_srcdir)/clutter/json/json-parser.h \
|
|
$(top_srcdir)/clutter/json/json-types.h
|
|
|
|
source_h_priv = \
|
|
$(top_srcdir)/clutter/json/json-types-private.h
|
|
|
|
noinst_LTLIBRARIES = libclutter-json.la
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-DG_DISABLE_SINGLE_INCLUDES \
|
|
-DG_LOG_DOMAIN=\"Clutter-Json\" \
|
|
-DG_DISABLE_DEPRECATED \
|
|
-DJSON_COMPILATION
|
|
|
|
AM_CFLAGS = $(MAINTAINER_CFLAGS)
|
|
AM_CPPFLAGS = $(CLUTTER_CFLAGS) $(CLUTTER_DEBUG_CFLAGS)
|
|
|
|
clutterjsondir = $(includedir)/clutter-@CLUTTER_API_VERSION@/clutter/json
|
|
clutterjson_HEADERS = $(source_h)
|
|
|
|
libclutter_json_la_SOURCES = $(source_c) $(source_h) $(source_h_priv)
|
|
|
|
noinst_DATA =
|
|
CLEANFILES =
|