mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 13:18:50 +08:00
738819b053
tools/zds: A new tool sub-directory intended to hold tools for making life working with the ZDS-II toolchain less painful. tools/zds/zdsar.c: This is a wrapper around the ZDS_II librarian. It simplifies the build scripts by replacing large sequences of complex Bash script that were added to the build files. Not only does this clean up the build files but it also improves performance and, more importantly, provides a common solution for the Windows native build case. This tool should work with all ZDS-II based platforms including z8, zNeo, and ez80. tools/README.txt: Add a brief description about the zds sub-directory. Also re-ordered some tool descriptions. They are supposed to be in alphabetical order, but this seems to have fallen apart. boards/z80/ez80/scripts/eZ80_Config.mk: Updated to use tools/zds/zdsar.exe.
69 lines
2.2 KiB
Makefile
69 lines
2.2 KiB
Makefile
############################################################################
|
|
# tools/zds/Makefile
|
|
#
|
|
# 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
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# 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.
|
|
#
|
|
############################################################################
|
|
|
|
TOPDIR ?= $(CURDIR)/..
|
|
-include $(TOPDIR)/Make.defs
|
|
|
|
# Define HOSTCC on the make command line if it differs from these defaults
|
|
# Define HOSTCFLAGS with -g on the make command line to build debug versions
|
|
|
|
HOSTOS = ${shell uname -o 2>/dev/null || uname -s 2>/dev/null || echo "Other"}
|
|
|
|
ifeq ($(HOSTOS),MinGW)
|
|
|
|
# In the Windows native environment, the MinGW GCC compiler is used
|
|
|
|
HOSTCC ?= mingw32-gcc.exe
|
|
HOSTCFLAGS ?= -O2 -Wall -Wstrict-prototypes -Wshadow -I.
|
|
HOSTCFLAGS += -DHOST_NATIVE=1
|
|
|
|
else
|
|
|
|
# Must be Cygwin or MYS2 on Windows (Can't be Linux, macOS, BSD, ..)
|
|
#
|
|
# GCC or clang is assumed in all other POSIX environments.
|
|
# strtok_r is used in some tools, but does not seem to be available in
|
|
# the MinGW environment.
|
|
|
|
HOSTCC ?= cc
|
|
HOSTCFLAGS ?= -O2 -Wall -Wstrict-prototypes -Wshadow -I.
|
|
HOSTCFLAGS += -DHAVE_STRTOK_C=1 -DHOST_CYGWIN=1
|
|
|
|
endif
|
|
|
|
# Targets
|
|
|
|
all: zdsar.exe
|
|
default: zdsar.exe
|
|
.PHONY: clean
|
|
|
|
# Add CFLAGS=-g on the make command line to build debug versions
|
|
|
|
CFLAGS = -O2 -Wall -Wstrict-prototypes -Wshadow -I.
|
|
CFLAGS += -DHAVE_STRTOK_C=1
|
|
|
|
# zdsar - Convert virtual addresses in nuttx.hex to physical addresses
|
|
|
|
zdsar.exe: zdsar.c zdsar.c
|
|
$(Q) $(HOSTCC) $(HOSTCFLAGS) -o zdsar.exe zdsar.c
|
|
|
|
clean:
|
|
@rm -f *.o *.a *.dSYM *~ .*.swp
|
|
@rm -f zdsar zdsar.exe
|