summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1eb606bb7a07002d9930e5a8566b5fe6c9b93f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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
$(error 'BOARD' is not defined.  Unable to build gavd.)
endif

export ADHD_DIR = $(shell pwd)
include $(ADHD_DIR)/defs/definitions.mk

all:	gavd adhdinfo

adhdinfo gavd::	lib

lib gavd adhdinfo::
	@$(call remake,Building,$@,$@)

clean:
	@rm -rf $(ADHD_BUILD_DIR)

.PHONY:	gavd clean adhdinfo lib