summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTaylor Hutt <thutt@chromium.org>2011-08-23 14:44:34 -0700
committerTaylor Hutt <thutt@chromium.org>2011-08-26 14:16:32 -0700
commit8982204dee44ece1cef2178747a27f08beb374cf (patch)
tree8d10ebd91ef61e4f9542708ce5a25e3483ee83e2 /Makefile
parent615c27c4b70154e9ff5f91f544b5739c33a24944 (diff)
downloadadhd-8982204dee44ece1cef2178747a27f08beb374cf.tar.gz
ADHD: Daemon for watching A/V device events
Details This project will be a daemon which will monitor the hardware for insert & remove events of A/V devices and handle the multiplexing of sound I/O & video output amongst devices. The initial commit has no functionality; it is being used to integrate the code into the Chromium OS codebase & build process. Subsequent changes will enable functionality. Testing Execute 'make' in the 'adhd' directory, and the project builds. Execute 'gavd', and note the message output. BUG=chromium-os:19558 TEST=See above Signed-off-by: Taylor Hutt <thutt@chromium.org> Change-Id: I5106acc83e4f2fe60e34c4d8de62f2ff9a5f6f51 Signed-off-by: Taylor Hutt <thutt@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..11405e36
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,20 @@
+# Copyright (c) 2011 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.
+ifndef BOARD
+$(warning 'BOARD' is not defined. Board-specific features will \
+ not be available.)
+endif
+
+export ADHD_DIR = $(shell pwd)
+include $(ADHD_DIR)/defs/definitions.mk
+
+all: gavd
+
+gavd: # Google Audio Visual Daemon
+ @$(call remake,gavd)
+
+clean:
+ @rm -rf $(ADHD_BUILD_DIR)
+
+.PHONY: gavd clean