Taylor Hutt | 8982204 | 2011-08-23 14:44:34 -0700 | [diff] [blame] | 1 | # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | ifndef BOARD |
Taylor Hutt | 690fc53 | 2011-09-02 10:23:43 -0700 | [diff] [blame^] | 5 | $(error 'BOARD' is not defined. Unable to build gavd.) |
Taylor Hutt | 8982204 | 2011-08-23 14:44:34 -0700 | [diff] [blame] | 6 | endif |
| 7 | |
| 8 | export ADHD_DIR = $(shell pwd) |
| 9 | include $(ADHD_DIR)/defs/definitions.mk |
| 10 | |
Taylor Hutt | 690fc53 | 2011-09-02 10:23:43 -0700 | [diff] [blame^] | 11 | all: gavd alsainfo |
Taylor Hutt | 8982204 | 2011-08-23 14:44:34 -0700 | [diff] [blame] | 12 | |
Taylor Hutt | 690fc53 | 2011-09-02 10:23:43 -0700 | [diff] [blame^] | 13 | alsainfo gavd:: lib |
Taylor Hutt | 47ce5dc | 2011-09-02 10:23:43 -0700 | [diff] [blame] | 14 | |
Taylor Hutt | 690fc53 | 2011-09-02 10:23:43 -0700 | [diff] [blame^] | 15 | lib gavd alsainfo:: |
Taylor Hutt | 172808c | 2011-09-01 14:06:32 -0700 | [diff] [blame] | 16 | @$(call remake,$@) |
Taylor Hutt | 8982204 | 2011-08-23 14:44:34 -0700 | [diff] [blame] | 17 | |
| 18 | clean: |
| 19 | @rm -rf $(ADHD_BUILD_DIR) |
| 20 | |
Taylor Hutt | 690fc53 | 2011-09-02 10:23:43 -0700 | [diff] [blame^] | 21 | .PHONY: gavd clean alsainfo lib |