2019-06-04 19:12:17 +02:00
|
|
|
############################################################################
|
2019-08-09 15:22:39 +02:00
|
|
|
# boards/z80/ez80/makerlisp/scripts/Make.defs
|
2019-06-04 19:12:17 +02:00
|
|
|
#
|
2021-03-05 10:18:57 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2019-06-04 19:12:17 +02:00
|
|
|
#
|
2021-03-05 10:18:57 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2019-06-04 19:12:17 +02:00
|
|
|
#
|
2021-03-05 10:18:57 +01:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2019-06-04 19:12:17 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
include $(TOPDIR)/.config
|
|
|
|
include $(TOPDIR)/tools/Config.mk
|
2020-05-19 16:25:18 +02:00
|
|
|
include $(TOPDIR)/arch/z80/src/ez80/Toolchain.defs
|
2020-03-06 14:54:30 +01:00
|
|
|
include $(TOPDIR)/tools/zds/Config.mk
|
2019-06-04 19:12:17 +02:00
|
|
|
|
2020-02-21 03:17:35 +01:00
|
|
|
# CFLAGS
|
2019-06-04 19:12:17 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
|
|
|
ARCHASMINCLUDES = -include:$(TOPDIR)\include;$(ZDSSTDINCDIR);$(ZDSZILOGINCDIR)
|
|
|
|
EARCHASMINCLUDES = -include:$(TOPDIR)\include;$(ZDSSTDINCDIR);$(ZDSZILOGINCDIR)
|
|
|
|
ARCHSTDINCLUDES = -stdinc:$(TOPDIR)\include;$(ZDSSTDINCDIR);$(ZDSZILOGINCDIR)
|
|
|
|
else
|
2020-02-21 16:33:34 +01:00
|
|
|
ARCHASMINCLUDES = -include:'$(WTOPDIR)\include;$(WZDSSTDINCDIR);$(WZDSZILOGINCDIR)'
|
|
|
|
EARCHASMINCLUDES = -include:'$(ETOPDIR)\include;$(EZDSSTDINCDIR);$(EZDSZILOGINCDIR)'
|
|
|
|
ARCHSTDINCLUDES = -stdinc:'$(WTOPDIR)\include;$(WZDSSTDINCDIR);$(WZDSZILOGINCDIR)'
|
2019-06-04 19:12:17 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Assembler definitions
|
|
|
|
|
|
|
|
ARCHASMCPUFLAGS = -cpu:$(ARCHCPU) -NOigcase
|
|
|
|
ARCHASMLIST = -list -NOlistmac -name -pagelen:56 -pagewidth:80 -quiet
|
|
|
|
ARCHASMWARNINGS = -warn
|
2020-02-25 21:38:24 +01:00
|
|
|
ARCHASMDEFINES = -define:$(ARCHCPUDEF)=1 -define:$(ARCHFAMILY)=1 -define:__ASSEMBLY__
|
2020-09-24 12:46:51 +02:00
|
|
|
AFLAGS := $(ARCHASMCPUFLAGS) $(ARCHASMINCLUDES) $(ARCHASMLIST) $(ARCHASMWARNINGS) $(ARCHASMOPTIMIZATION)
|
2019-06-04 19:12:17 +02:00
|
|
|
|
|
|
|
# Compiler definitions
|
|
|
|
|
|
|
|
ARCHCPUFLAGS = -chartype:S -promote -cpu:$(ARCHCPU) -NOgenprintf -NOmodsect \
|
2020-02-29 16:16:50 +01:00
|
|
|
-asmsw:" $(ARCHASMCPUFLAGS) $(EARCHASMINCLUDES) $(ARCHASMWARNINGS) $(ARCHASMOPTIMIZATION)"
|
2019-06-04 19:12:17 +02:00
|
|
|
ARCHLIST = -keeplst -NOlist -NOlistinc -keepasm
|
|
|
|
ARCHWARNINGS = -warn
|
2020-02-25 21:38:24 +01:00
|
|
|
ARCHDEFINES = -define:$(ARCHCPUDEF) -define:$(ARCHFAMILY)
|
2020-05-19 11:43:29 +02:00
|
|
|
ARCHINCLUDES = $(ARCHSTDINCLUDES)
|
2020-09-24 12:46:51 +02:00
|
|
|
CFLAGS := $(ARCHWARNINGS) $(ARCHOPTIMIZATION) $(ARCHLIST) $(ARCHCPUFLAGS) $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS)
|
2019-06-04 19:12:17 +02:00
|
|
|
|
2020-02-25 21:38:24 +01:00
|
|
|
CPPDEFINES = -D$(ARCHFAMILY) -D$(ARCHCPUDEF) -D__ASSEMBLY__
|
2019-06-04 19:12:17 +02:00
|
|
|
CPPINCLUDES = -I$(TOPDIR)$(DELIM)include
|
2020-09-24 12:46:51 +02:00
|
|
|
CPPFLAGS := $(CPPDEFINES) $(CPPINCLUDES)
|
2019-06-04 19:12:17 +02:00
|
|
|
|
|
|
|
# Librarian definitions
|
|
|
|
|
|
|
|
ARFLAGS = -quiet -warn
|
|
|
|
|
|
|
|
# Linker definitions
|
|
|
|
|
2019-06-26 17:56:20 +02:00
|
|
|
ifeq ($(CONFIG_BOOT_RUNFROMFLASH),y)
|
|
|
|
LDSCRIPT = makerlisp_flash.linkcmd
|
2019-06-27 16:39:12 +02:00
|
|
|
else ifeq ($(CONFIG_MAKERLISP_COPYTORAM),y)
|
|
|
|
LDSCRIPT = makerlisp_copytoram.linkcmd
|
2019-06-26 17:56:20 +02:00
|
|
|
else # ifeq ($(CONFIG_BOOT_RUNFROMEXTSRAM),y)
|
|
|
|
LDSCRIPT = makerlisp_ram.linkcmd
|
|
|
|
endif
|
|
|
|
|
2020-05-20 21:41:57 +02:00
|
|
|
LINKCMDTEMPLATE = $(BOARD_DIR)$(DELIM)scripts$(DELIM)$(LDSCRIPT)
|
2019-06-04 19:12:17 +02:00
|
|
|
|
2020-05-19 06:30:46 +02:00
|
|
|
MKDEP = $(TOPDIR)$(DELIM)tools$(DELIM)mknulldeps.sh
|