Add new Skeleton.

This commit is contained in:
2016-11-16 22:04:31 +01:00
parent 05de7d6c04
commit 317c040ea8
46 changed files with 16694 additions and 0 deletions

23
bsp/include/rules.mk Normal file
View File

@@ -0,0 +1,23 @@
msg:
@echo "Building $(AW_PROJECT_NAME) Firmware."
clean:
rm -rf $(AW_STAGING)
export DEBUG ?= 0
ifeq ($(DEBUG),1)
$(warning "DEBUG")
BUILD_DIR := -debug
BUILD_TYPE := Debug
export BR2_ENABLE_DEBUG=y
else
$(warning "RELEASE")
BUILD_DIR := -release
BUILD_TYPE := Release
endif
export BUILD_TYPE
export AW_LOCAL_BUILDS_ROOT ?= $(AW_PROJECT)/../../_builds
export AW_STAGING ?= $(AW_LOCAL_BUILDS_ROOT)/$(AW_PROJECT_NAME)$(BUILD_DIR)/