2009-03-02 00:50:29 +08:00
|
|
|
############################################################################
|
2019-08-09 21:22:39 +08:00
|
|
|
# boards/z80/ez80/ez80f910200zco/scripts/Make.defs
|
2009-03-02 00:50:29 +08:00
|
|
|
#
|
2021-03-05 17:18:57 +08: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
|
2009-03-02 00:50:29 +08:00
|
|
|
#
|
2021-03-05 17:18:57 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2009-03-02 00:50:29 +08:00
|
|
|
#
|
2021-03-05 17:18:57 +08: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.
|
2009-03-02 00:50:29 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2012-11-27 02:39:49 +08:00
|
|
|
include $(TOPDIR)/.config
|
|
|
|
include $(TOPDIR)/tools/Config.mk
|
2020-05-19 22:25:18 +08:00
|
|
|
include $(TOPDIR)/arch/z80/src/ez80/Toolchain.defs
|
2020-03-06 21:54:30 +08:00
|
|
|
include $(TOPDIR)/tools/zds/Config.mk
|
2009-03-02 00:50:29 +08:00
|
|
|
|
2020-02-21 10:17:35 +08:00
|
|
|
# CFLAGS
|
2012-11-12 07:44:31 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
2012-11-27 02:39:49 +08:00
|
|
|
ARCHASMINCLUDES = -include:$(TOPDIR)\include;$(ZDSSTDINCDIR);$(ZDSZILOGINCDIR)
|
|
|
|
EARCHASMINCLUDES = -include:$(TOPDIR)\include;$(ZDSSTDINCDIR);$(ZDSZILOGINCDIR)
|
|
|
|
ARCHSTDINCLUDES = -stdinc:$(TOPDIR)\include;$(ZDSSTDINCDIR);$(ZDSZILOGINCDIR)
|
2012-11-12 07:44:31 +08:00
|
|
|
else
|
2012-11-27 02:39:49 +08:00
|
|
|
ARCHASMINCLUDES = -include:'$(WTOPDIR)\include;$(WZDSSTDINCDIR);$(WZDSZILOGINCDIR)'
|
|
|
|
EARCHASMINCLUDES = -include:'$(ETOPDIR)\include;$(EZDSSTDINCDIR);$(EZDSZILOGINCDIR)'
|
|
|
|
ARCHSTDINCLUDES = -stdinc:'$(WTOPDIR)\include;$(WZDSSTDINCDIR);$(WZDSZILOGINCDIR)'
|
|
|
|
endif
|
2009-03-02 00:50:29 +08:00
|
|
|
|
|
|
|
# Assembler definitions
|
|
|
|
|
2012-11-27 01:07:34 +08:00
|
|
|
ARCHASMCPUFLAGS = -cpu:$(ARCHCPU) -NOigcase
|
|
|
|
ARCHASMLIST = -list -NOlistmac -name -pagelen:56 -pagewidth:80 -quiet
|
|
|
|
ARCHASMWARNINGS = -warn
|
2020-02-26 04:38:24 +08:00
|
|
|
ARCHASMDEFINES = -define:$(ARCHCPUDEF)=1 -define:$(ARCHFAMILY)=1 -define:__ASSEMBLY__
|
2020-09-24 18:46:51 +08:00
|
|
|
AFLAGS := $(ARCHASMCPUFLAGS) $(ARCHASMINCLUDES) $(ARCHASMLIST) $(ARCHASMWARNINGS) $(ARCHASMOPTIMIZATION)
|
2009-03-02 00:50:29 +08:00
|
|
|
|
|
|
|
# Compiler definitions
|
|
|
|
|
2012-11-27 01:07:34 +08:00
|
|
|
ARCHCPUFLAGS = -chartype:S -promote -cpu:$(ARCHCPU) -NOgenprintf -NOmodsect \
|
2020-02-29 23:16:50 +08:00
|
|
|
-asmsw:" $(ARCHASMCPUFLAGS) $(EARCHASMINCLUDES) $(ARCHASMWARNINGS) $(ARCHASMOPTIMIZATION)"
|
2012-11-27 01:07:34 +08:00
|
|
|
ARCHLIST = -keeplst -NOlist -NOlistinc -keepasm
|
|
|
|
ARCHWARNINGS = -warn
|
2020-02-26 04:38:24 +08:00
|
|
|
ARCHDEFINES = -define:$(ARCHCPUDEF) -define:$(ARCHFAMILY)
|
2020-05-19 17:43:29 +08:00
|
|
|
ARCHINCLUDES = $(ARCHSTDINCLUDES)
|
2020-09-24 18:46:51 +08:00
|
|
|
CFLAGS := $(ARCHWARNINGS) $(ARCHOPTIMIZATION) $(ARCHLIST) $(ARCHCPUFLAGS) $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS)
|
2012-11-27 01:07:34 +08:00
|
|
|
|
2020-02-26 04:38:24 +08:00
|
|
|
CPPDEFINES = -D$(ARCHFAMILY) -D$(ARCHCPUDEF) -D__ASSEMBLY__
|
2012-11-27 02:39:49 +08:00
|
|
|
CPPINCLUDES = -I$(TOPDIR)$(DELIM)include
|
2020-09-24 18:46:51 +08:00
|
|
|
CPPFLAGS := $(CPPDEFINES) $(CPPINCLUDES)
|
2009-03-02 00:50:29 +08:00
|
|
|
|
|
|
|
# Librarian definitions
|
|
|
|
|
2012-11-27 01:07:34 +08:00
|
|
|
ARFLAGS = -quiet -warn
|
2009-03-02 00:50:29 +08:00
|
|
|
|
|
|
|
# Linker definitions
|
|
|
|
|
2020-05-21 03:41:57 +08:00
|
|
|
LINKCMDTEMPLATE = $(BOARD_DIR)$(DELIM)scripts$(DELIM)ez80f910200zco.linkcmd
|
2009-03-02 00:50:29 +08:00
|
|
|
|
2020-05-19 12:30:46 +08:00
|
|
|
MKDEP = $(TOPDIR)$(DELIM)tools$(DELIM)mknulldeps.sh
|