[include] move almost all of the remainder of top level includes into a subdir

Examples are include/platform.h -> platform/include/platform.h
include/target.h -> target/include/target.h

The old model generally considered these to be Always There includes,
but they're starting to stick out more and more so may as well actually
follow the model that most of the rest of the system follows.
This commit is contained in:
Travis Geiselbrecht
2019-07-13 16:05:41 -07:00
parent a634b338c5
commit 35a8d555a3
48 changed files with 13 additions and 3 deletions

1
arch/arch.c Normal file
View File

@@ -0,0 +1 @@
// empty file to help build empty arch module

8
arch/rules.mk Normal file
View File

@@ -0,0 +1,8 @@
LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
MODULE_SRCS := $(LOCAL_DIR)/arch.c
include make/module.mk

View File

@@ -3,11 +3,12 @@ LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
MODULE_DEPS := \
platform \
target \
app \
arch \
dev \
kernel
kernel \
platform \
target
MODULE_SRCS := \
$(LOCAL_DIR)/init.c \