61 lines
3.0 KiB
Makefile
Executable File
61 lines
3.0 KiB
Makefile
Executable File
#########################################################################################################
|
|
##
|
|
## Name: Makefile
|
|
## Created: July 2019
|
|
## Author(s): Philip Smart
|
|
## Description: App Makefile - Build an App for the ZPU Test Application (zputa)
|
|
## This makefile builds an app which is stored on an SD card and called by the ZPUTA
|
|
## test application. The app generally is for testing some component where the code is
|
|
## not built into ZPUTA or memory restrictions prohibit it being built in.
|
|
##
|
|
## Credits:
|
|
## Copyright: (c) 2019 Philip Smart <philip.smart@net2net.org>
|
|
##
|
|
## History: July 2019 - Initial Makefile created for template use.
|
|
##
|
|
## Notes: Optional component enables:
|
|
## USELOADB - The Byte write command is implemented in hw#sw so use it.
|
|
## USE_BOOT_ROM - The target is ROM so dont use initialised data.
|
|
## MINIMUM_FUNTIONALITY - Minimise functionality to limit code size.
|
|
## COREMARK_TEST - Add the CoreMark test suite.
|
|
## DHYRSTONE_TEST - Add the Dhrystone test suite.
|
|
## USE_SDCARD - Add the SDCard logic.
|
|
##
|
|
#########################################################################################################
|
|
## This source file is free software: you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published
|
|
## by the Free Software Foundation, either version 3 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This source file is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#########################################################################################################
|
|
|
|
APP_NAME = coremark
|
|
APP_DIR = ..
|
|
BASEDIR = ../../..
|
|
SWDIR = $(BASEDIR)/software
|
|
|
|
# Coremark/Dhrystone specific settings.
|
|
DHRY_DIR = $(SWDIR)/common/Dhrystone
|
|
CORE_DIR = $(SWDIR)/common/CoreMark
|
|
DHRY_SRC = $(DHRY_DIR)/dhry_1.c $(DHRY_DIR)/dhry_2.c
|
|
CORE_SRC = $(CORE_DIR)/core_list_join.c $(CORE_DIR)/core_main_embedded.c $(CORE_DIR)/core_matrix.c $(CORE_DIR)/core_state.c $(CORE_DIR)/core_util.c $(CORE_DIR)/ee_printf.c $(CORE_DIR)/core_portme.c
|
|
DHRY_OBJ = $(patsubst $(DHRY_DIR)/%.c,$(BUILD_DIR)/%.o,$(DHRY_SRC))
|
|
CORE_OBJ = $(patsubst $(CORE_DIR)/%.c,$(BUILD_DIR)/%.o,$(CORE_SRC))
|
|
|
|
MAIN_OBJ = $(CORE_OBJ)
|
|
|
|
CFLAGS += -I$(DHRY_DIR) -I$(CORE_DIR)
|
|
# Enable CoreMark Test
|
|
OFLAGS += -DCOREMARK_TEST
|
|
# Enable Dhrystone Test
|
|
#OFLAGS += -DDHRYSTONE_TEST
|
|
|
|
include $(APP_DIR)/Makefile.inc
|