| OLD | NEW |
| 1 AM_CPPFLAGS = \ | 1 AM_CPPFLAGS = \ |
| 2 $(dbus_CFLAGS) \ | 2 $(dbus_CFLAGS) \ |
| 3 $(glib_CFLAGS) \ | 3 $(glib_CFLAGS) \ |
| 4 $(ecore_CFLAGS) \ | 4 $(ecore_CFLAGS) \ |
| 5 $(PRIVATE_CFLAGS) \ | 5 $(PRIVATE_CFLAGS) \ |
| 6 -I$(top_srcdir)/include \ | 6 -I$(top_srcdir)/include \ |
| 7 -I$(top_builddir)/include | 7 -I$(top_builddir)/include |
| 8 | 8 |
| 9 if ENABLE_GLIB | 9 if ENABLE_GLIB |
| 10 GLIB_H = $(HEADER_DIR)/glib-integration.h | 10 GLIB_H = $(HEADER_DIR)/glib-integration.h |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 $(HEADER_DIR)/connection.h \ | 23 $(HEADER_DIR)/connection.h \ |
| 24 $(HEADER_DIR)/property.h \ | 24 $(HEADER_DIR)/property.h \ |
| 25 $(HEADER_DIR)/debug.h \ | 25 $(HEADER_DIR)/debug.h \ |
| 26 $(HEADER_DIR)/error.h \ | 26 $(HEADER_DIR)/error.h \ |
| 27 $(HEADER_DIR)/interface.h \ | 27 $(HEADER_DIR)/interface.h \ |
| 28 $(HEADER_DIR)/message.h \ | 28 $(HEADER_DIR)/message.h \ |
| 29 $(HEADER_DIR)/dispatcher.h \ | 29 $(HEADER_DIR)/dispatcher.h \ |
| 30 $(HEADER_DIR)/object.h \ | 30 $(HEADER_DIR)/object.h \ |
| 31 $(HEADER_DIR)/pendingcall.h \ | 31 $(HEADER_DIR)/pendingcall.h \ |
| 32 $(HEADER_DIR)/server.h \ | 32 $(HEADER_DIR)/server.h \ |
| 33 $(HEADER_DIR)/debug.h \ | |
| 34 $(HEADER_DIR)/util.h \ | 33 $(HEADER_DIR)/util.h \ |
| 35 $(HEADER_DIR)/refptr_impl.h \ | 34 $(HEADER_DIR)/refptr_impl.h \ |
| 36 $(HEADER_DIR)/introspection.h \ | 35 $(HEADER_DIR)/introspection.h \ |
| 37 $(HEADER_DIR)/api.h \ | 36 $(HEADER_DIR)/api.h \ |
| 38 $(HEADER_DIR)/eventloop.h \ | 37 $(HEADER_DIR)/eventloop.h \ |
| 39 $(HEADER_DIR)/eventloop-integration.h \ | 38 $(HEADER_DIR)/eventloop-integration.h \ |
| 40 $(GLIB_H) $(ECORE_H) | 39 $(GLIB_H) $(ECORE_H) |
| 41 | 40 |
| 42 lib_includedir=$(includedir)/dbus-c++-1/dbus-c++/ | 41 lib_includedir=$(includedir)/dbus-c++-1/dbus-c++/ |
| 43 lib_include_HEADERS = $(HEADER_FILES) | 42 lib_include_HEADERS = $(HEADER_FILES) |
| 44 | 43 |
| 45 lib_LTLIBRARIES = libdbus-c++-1.la | 44 lib_LTLIBRARIES = libdbus-c++-1.la |
| 46 libdbus_c___1_la_SOURCES = $(HEADER_FILES) interface.cpp object.cpp introspectio
n.cpp debug.cpp types.cpp connection.cpp connection_p.h property.cpp dispatcher.
cpp dispatcher_p.h pendingcall.cpp pendingcall_p.h error.cpp internalerror.h mes
sage.cpp message_p.h server.cpp server_p.h eventloop.cpp eventloop-integration.c
pp $(GLIB_CPP) $(ECORE_CPP) | 45 libdbus_c___1_la_SOURCES = $(HEADER_FILES) interface.cpp object.cpp introspectio
n.cpp debug.cpp types.cpp connection.cpp connection_p.h property.cpp dispatcher.
cpp dispatcher_p.h pendingcall.cpp pendingcall_p.h error.cpp internalerror.h mes
sage.cpp message_p.h server.cpp server_p.h eventloop.cpp eventloop-integration.c
pp $(GLIB_CPP) $(ECORE_CPP) |
| 47 libdbus_c___1_la_LIBADD = $(dbus_LIBS) $(glib_LIBS) $(pthread_LIBS) $(ecore_LIBS
) | 46 libdbus_c___1_la_LIBADD = $(dbus_LIBS) $(glib_LIBS) $(pthread_LIBS) $(ecore_LIBS
) |
| 48 | 47 |
| 49 MAINTAINERCLEANFILES = \ | 48 MAINTAINERCLEANFILES = \ |
| 50 Makefile.in | 49 Makefile.in |
| OLD | NEW |