summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTaylor Hutt <thutt@chromium.org>2012-06-22 09:40:58 -0700
committerTaylor Hutt <thutt@chromium.org>2012-06-25 09:41:41 -0700
commit8e648ba3f24eea83b4af9451ab7ab649a5412890 (patch)
tree8f21ddd6e427eb6cc589110341a523c9f481544e /Makefile
parente135d7285a43b5f745e3dc5f965633e4d7a557e7 (diff)
downloadadhd-8e648ba3f24eea83b4af9451ab7ab649a5412890.tar.gz
ADHD: Stop building gavd
Now that o all the functionality of gavd has been incorporated into cras o gavd is no longer started on devices o gavd user & group are removed from devices there is no reason to build it. This change stops building gavd. BUG=none TEST=/usr/bin/gavd is no longer delivered on the device. Signed-off-by: Taylor Hutt <thutt@chromium.org> Change-Id: I89799334cbe63ba4e6838651b3eaa37c422564e6
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 3 insertions, 15 deletions
diff --git a/Makefile b/Makefile
index 56e6e660..d660e0d6 100644
--- a/Makefile
+++ b/Makefile
@@ -2,20 +2,13 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
ifndef BOARD
-$(error 'BOARD' is not defined. Unable to build gavd.)
+$(error 'BOARD' is not defined. Unable to build ADHD.)
endif
export ADHD_DIR = $(shell pwd)
include $(ADHD_DIR)/defs/definitions.mk
-all: gavd adhdinfo cras
-
-adhdinfo gavd:: lib
-
-gavd:: cras
-
-lib gavd adhdinfo::
- @$(call remake,Building,$@,Makefile,$@)
+all: cras
cras:
@$(call remake,Building,$@,cras.mk,$@)
@@ -32,10 +25,6 @@ $(DESTDIR)/etc/init/cras.conf: $(ADHD_DIR)/upstart/cras.conf
$(ECHO) "Installing '$<' to '$@'"
$(INSTALL) --mode 644 -D $< $@
-$(DESTDIR)/usr/bin/gavd: $(ADHD_BUILD_DIR)/gavd/gavd
- $(ECHO) "Installing '$<' to '$@'"
- $(INSTALL) -D $< $@
-
$(DESTDIR)/etc/asound.state: $(ADHD_DIR)/factory-default/asound.state.$(BOARD)
$(ECHO) "Installing '$<' to '$@'"
$(INSTALL) --mode 644 -D $< $@
@@ -68,10 +57,9 @@ endif
install: $(DESTDIR)/etc/init/cras.conf \
$(DESTDIR)/etc/asound.state \
- $(DESTDIR)/usr/bin/gavd \
$(DESTDIR)/lib/udev/rules.d/99-dev-input-group.rules \
cras_install
clean:
@rm -rf $(ADHD_BUILD_DIR)
-.PHONY: gavd clean adhdinfo lib cras cras_install
+.PHONY: clean cras cras_install