Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: src/Makefile.am

Issue 2812018: Implement basic infrastructure for cashew daemon. (Closed) Base URL: ssh://gitrw.chromium.org/cashew.git
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « configure.ac ('k') | src/cashew.conf » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/Makefile.am
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000000000000000000000000000000000000..20c38829f5f640b51a9c6d5a6cf7a816cd882c88
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,24 @@
+# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+sbin_PROGRAMS = cashewd
+
+cashewd_SOURCES = main.cc
+
+# manually defining these instead of getting them via autoconf, because gflags
+# has no pkg-config file
+GFLAGS_CFLAGS =
+GFLAGS_LIBS = -lgflags
+
+cashewd_CPPFLAGS = -Wall -Werror \
+ @DBUS_CPP_CFLAGS@ \
+ $(GFLAGS_CFLAGS) \
+ @GLOG_CFLAGS@
+
+cashewd_LDADD = \
+ @DBUS_CPP_LIBS@ \
+ $(GFLAGS_LIBS) \
+ @GLOG_LIBS@
+
+EXTRA_DIST = cashew.conf
« no previous file with comments | « configure.ac ('k') | src/cashew.conf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698