diff options
author | Richard Hughes <richard@hughsie.com> | 2009-07-27 16:40:11 +0100 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2009-07-27 16:40:11 +0100 |
commit | 0c8d29a90f5b5b7d84ec834213ac7e4390e89db9 (patch) | |
tree | 913239be76d6075d7926c8cd1252060ca9dc170f /src/dummy/Makefile.am | |
parent | 8cf5c058c337a114d6fc5cf18593c5ecf1099efd (diff) | |
download | upower-0c8d29a90f5b5b7d84ec834213ac7e4390e89db9.tar.gz |
Initial split to make DeviceKit-power compile without GUdev for non-linux platforms
Diffstat (limited to 'src/dummy/Makefile.am')
-rw-r--r-- | src/dummy/Makefile.am | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/dummy/Makefile.am b/src/dummy/Makefile.am new file mode 100644 index 0000000..aa1c944 --- /dev/null +++ b/src/dummy/Makefile.am @@ -0,0 +1,23 @@ +## Process this file with automake to produce Makefile.in + +INCLUDES = \ + -I$(top_builddir)/src -I$(top_srcdir)/src \ + -DEGG_LOG_FILE=\""$(DKP_LOG_DIR)/DeviceKit-power"\" \ + -DEGG_VERBOSE="\"DKP_VERBOSE\"" \ + -DEGG_LOGGING="\"DKP_LOGGING\"" \ + -DEGG_CONSOLE="\"DKP_CONSOLE\"" \ + -DDKP_COMPILATION \ + -I$(top_srcdir)/devkit-power-gobject \ + $(DBUS_GLIB_CFLAGS) \ + $(POLKIT_CFLAGS) \ + $(GLIB_CFLAGS) + +noinst_LIBRARIES = libdkpshared.a +libdkpshared_a_SOURCES = \ + dkp-backend.c \ + dkp-native.c \ + $(BUILT_SOURCES) + +clean-local : + rm -f *~ + |