mirror of
https://github.com/apache/nuttx.git
synced 2026-05-21 04:52:02 +08:00
tools/zds: Add build tools to simplify ZDS-II tool usage
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.
This commit is contained in:
committed by
Alan Carvalho de Assis
parent
bd4e8e19d3
commit
738819b053
@@ -22,45 +22,9 @@
|
||||
# and assembly source files and to insert the resulting object files into an
|
||||
# archive. These replace the default definitions at tools/Config.mk
|
||||
|
||||
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
||||
|
||||
define PREPROCESS
|
||||
@echo CPP: $(1)->$(2)
|
||||
$(Q) $(CPP) $(CPPFLAGS) $($(strip $(1))_CPPFLAGS) $(1) -o $(2)
|
||||
endef
|
||||
|
||||
define COMPILE
|
||||
$(call DELFILE, $(2))
|
||||
$(Q) $(CC) $(CFLAGS) $($(strip $(1))_CFLAGS) ${shell echo $(1) | sed -e "s/\//\\/g"}
|
||||
if not exist $(2) $(call MOVEFILE, $(subst .c,.obj,$(1)), $(2))
|
||||
endef
|
||||
|
||||
define ASSEMBLE
|
||||
$(call DELFILE, $(2))
|
||||
$(Q) $(AS) $(AFLAGS) $($(strip $(1))_AFLAGS) ${shell echo $(1) | sed -e "s/\//\\/g"}
|
||||
if not exist $(2) $(call MOVEFILE, $(subst .asm,.obj,$(1)), $(2))
|
||||
endef
|
||||
|
||||
define MOVEOBJ
|
||||
$(call MOVEFILE, "$(1).obj", "$(2)$(DELIM)$(1).obj")
|
||||
$(call MOVEFILE, "$(1).lst", "$(2)$(DELIM)$(1).lst")
|
||||
$(call MOVEFILE, "$(1).src", "$(2)$(DELIM)$(1).src")
|
||||
endef
|
||||
|
||||
define ARCHIVE
|
||||
for %%G in ($(2)) do ( $(AR) $(ARFLAGS) $(1)=-+%%G )
|
||||
endef
|
||||
|
||||
define CLEAN
|
||||
$(Q) if exist *.obj (del /f /q *.obj)
|
||||
$(Q) if exist *.src (del /f /q *.src)
|
||||
$(Q) if exist *.lib (del /f /q *.lib)
|
||||
$(Q) if exist *.hex (del /f /q *.hex)
|
||||
$(Q) if exist *.lod (del /f /q *.lod)
|
||||
$(Q) if exist *.lst (del /f /q *.lst)
|
||||
endef
|
||||
|
||||
else
|
||||
# PREPROCESS
|
||||
#
|
||||
# Run a file through the C Pre-processor
|
||||
|
||||
define PREPROCESS
|
||||
@echo "CPP: $(1)->$(2)"
|
||||
@@ -83,11 +47,26 @@ endef
|
||||
# lie in a lower directory, but lies in the current directory and is
|
||||
# handled within COMPILE and ASSEMBLE.
|
||||
|
||||
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
||||
|
||||
define COMPILE
|
||||
$(call DELFILE, $(2))
|
||||
$(Q) $(CC) $(CFLAGS) $($(strip $(1))_CFLAGS) ${shell echo $(1) | sed -e "s/\//\\/g"}
|
||||
if not exist $(2) $(call MOVEFILE, $(subst .c,.obj,$(1)), $(2))
|
||||
endef
|
||||
|
||||
define ASSEMBLE
|
||||
$(call DELFILE, $(2))
|
||||
$(Q) $(AS) $(AFLAGS) $($(strip $(1))_AFLAGS) ${shell echo $(1) | sed -e "s/\//\\/g"}
|
||||
if not exist $(2) $(call MOVEFILE, $(subst .asm,.obj,$(1)), $(2))
|
||||
endef
|
||||
|
||||
else
|
||||
|
||||
define COMPILE
|
||||
$(call DELFILE, $(2))
|
||||
$(Q) $(CC) $(CFLAGS) $($(strip $(1))_CFLAGS) `cygpath -w "$(1)"`
|
||||
$(Q) ( \
|
||||
set -x ; \
|
||||
__rename=`basename $(2)` ;\
|
||||
if [ ! -e $${__rename} ] ; then \
|
||||
__src=`basename $(1) | cut -d'.' -f1` ; \
|
||||
@@ -103,7 +82,6 @@ define ASSEMBLE
|
||||
$(call DELFILE, $(2))
|
||||
$(Q) $(AS) $(AFLAGS) $($(strip $(1))_AFLAGS) `cygpath -w "$(1)"`
|
||||
$(Q) ( \
|
||||
set -x ; \
|
||||
__rename=`basename $(2)` ; \
|
||||
if [ ! -e $${__rename} ] ; then \
|
||||
__src=`basename $(1) | cut -d'.' -f1` ; \
|
||||
@@ -114,6 +92,7 @@ define ASSEMBLE
|
||||
fi ; \
|
||||
)
|
||||
endef
|
||||
endif
|
||||
|
||||
define MOVEOBJ
|
||||
$(call MOVEFILE, "$(1).obj", "$(2)$(DELIM)$(1).obj")
|
||||
@@ -133,22 +112,31 @@ endef
|
||||
# this case, the base library name is extact as the ARCHIVE logic CD's
|
||||
# to the directory containing the library.
|
||||
|
||||
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
||||
|
||||
define ARCHIVE
|
||||
( \
|
||||
set -x ;\
|
||||
__wd=`pwd` ;\
|
||||
__home=`dirname $(1)` ; \
|
||||
if [ -z "$${__home}" ] ; then \
|
||||
__lib=$(1) ; \
|
||||
else \
|
||||
__lib=`basename $(1)` ; \
|
||||
cd $${__home} ; \
|
||||
fi ; \
|
||||
for __obj in $(2) ; do \
|
||||
$(AR) $(ARFLAGS) $${__lib}=-+$$__obj ; \
|
||||
done ; \
|
||||
cd $${__wd} ; \
|
||||
)
|
||||
for %%G in ($(2)) do ( $(AR) $(ARFLAGS) $(1)=-+%%G )
|
||||
endef
|
||||
|
||||
define ARCHIVE
|
||||
$(MAKE) -C $(TOPDIR)\tools\zds zdsar.exe
|
||||
$(TOPDIR)\tools\zds\zdsar.exe --ar "$(AR)" --ar_flags "$(ARFLAGS)" --library "$(1)" $(2)
|
||||
endef
|
||||
|
||||
define CLEAN
|
||||
$(Q) if exist *.obj (del /f /q *.obj)
|
||||
$(Q) if exist *.src (del /f /q *.src)
|
||||
$(Q) if exist *.lib (del /f /q *.lib)
|
||||
$(Q) if exist *.hex (del /f /q *.hex)
|
||||
$(Q) if exist *.lod (del /f /q *.lod)
|
||||
$(Q) if exist *.lst (del /f /q *.lst)
|
||||
endef
|
||||
|
||||
else
|
||||
|
||||
define ARCHIVE
|
||||
$(MAKE) -C $(TOPDIR)/tools/zds zdsar.exe
|
||||
$(TOPDIR)/tools/zds/zdsar.exe --ar "$(AR)" --ar_flags "$(ARFLAGS)" --library $(1) $(2)
|
||||
endef
|
||||
|
||||
define CLEAN
|
||||
|
||||
+120
-114
@@ -328,7 +328,7 @@ nxstyle.c
|
||||
pic32mx
|
||||
-------
|
||||
|
||||
This directory contains build tools used only for PIC32MX platforms
|
||||
This directory contains build tools used only for PIC32MX/Z platforms
|
||||
|
||||
bdf-convert.c
|
||||
-------------
|
||||
@@ -466,60 +466,6 @@ bdf-convert.c
|
||||
NULL
|
||||
};
|
||||
|
||||
Makefile.host
|
||||
-------------
|
||||
|
||||
This is the makefile that is used to make the mkconfig program from
|
||||
the mkconfig.c C file, the cmpconfig program from cmpconfig.c C file,
|
||||
the mkversion program from the mkconfig.c C file, or the mksyscall
|
||||
program from the mksyscall.c file. Usage:
|
||||
|
||||
cd tools/
|
||||
make -f Makefile.host <program>
|
||||
|
||||
mkromfsimg.sh
|
||||
-------------
|
||||
|
||||
This script may be used to automate the generation of a ROMFS file system
|
||||
image. It accepts an rcS script "template" and generates an image that
|
||||
may be mounted under /etc in the NuttX pseudo file system.
|
||||
|
||||
TIP: Edit the resulting header file and mark the generated data values
|
||||
as 'const' so that they will be stored in FLASH.
|
||||
|
||||
mkdeps.c, cnvwindeps.c, mkwindeps.sh, and mknulldeps.sh
|
||||
-------------------------------------------------------
|
||||
|
||||
NuttX uses the GCC compiler's capabilities to create Makefile dependencies.
|
||||
The program mkdeps is used to run GCC in order to create the dependencies.
|
||||
If a NuttX configuration uses the GCC toolchain, its Make.defs file (see
|
||||
boards/README.txt) will include a line like:
|
||||
|
||||
MKDEP = $(TOPDIR)/tools/mkdeps[.exe] (See NOTE below)
|
||||
|
||||
If the NuttX configuration does not use a GCC compatible toolchain, then
|
||||
it cannot use the dependencies and instead it uses mknulldeps.sh:
|
||||
|
||||
MKDEP = $(TOPDIR)/tools/mknulldeps.sh
|
||||
|
||||
The mknulldeps.sh is a stub script that does essentially nothing.
|
||||
|
||||
mkwindeps.sh is a version that creates dependencies using the Windows
|
||||
native toolchain. That generates Windows native paths in the dependency
|
||||
file. But the mkwindeps.sh uses cnvwindeps.c to convert the Windows
|
||||
paths to POSIX paths. This adds some time to the Windows dependency
|
||||
generation but is generally the best option available for that mixed
|
||||
environment of Cygwin with a native Windows GCC toolchain.
|
||||
|
||||
mkdeps.c generates mkdeps (on Linux) or mkdeps.exe (on Windows).
|
||||
However, this version is still under-development. It works well in
|
||||
the all POSIX environment or in the all Windows environment but also
|
||||
does not work well in mixed POSIX environment with a Windows toolchain.
|
||||
In that case, there are still issues with the conversion of things like
|
||||
'c:\Program Files' to 'c:program files' by bash. Those issues may,
|
||||
eventually be solvable but for now continue to use mkwindeps.sh in
|
||||
that mixed environment.
|
||||
|
||||
define.sh and define.bat
|
||||
------------------------
|
||||
|
||||
@@ -531,6 +477,15 @@ define.sh and define.bat
|
||||
The define.bat script is a counterpart for use in the native Windows
|
||||
build.
|
||||
|
||||
flash_writer.py
|
||||
---------------
|
||||
|
||||
This flash writer is using the xmodem for firmware transfer on
|
||||
boards based on cxd56 chip (Ex. Spresense)
|
||||
|
||||
for flashing the .spk image to the board please use:
|
||||
tools/flash_writer.py -s -c /dev/ttyUSB0 -d -b 115200 -n nuttx.spk
|
||||
|
||||
ide_exporter.py
|
||||
---------------
|
||||
|
||||
@@ -641,6 +596,64 @@ incdir.sh and incdir.bat
|
||||
build. However, there is currently only one compiler supported in
|
||||
that context: MinGW-GCC.
|
||||
|
||||
indent.sh
|
||||
---------
|
||||
|
||||
This script can be used to indent .c and .h files in a manner similar
|
||||
to the NuttX coding style. It doesn't do a really good job, however
|
||||
(see below and the comments at the top of the indent.sh file).
|
||||
|
||||
USAGE:
|
||||
tools/indent.sh [-d] [-p] -o <out-file> <in-file>
|
||||
tools/indent.sh [-d] [-p] <in-file-list>
|
||||
tools/indent.sh [-d] -h
|
||||
|
||||
Where:
|
||||
-<in-file>
|
||||
A single, unformatted input file
|
||||
-<in-file-list>
|
||||
A list of unformatted input files that will be reformatted in place.
|
||||
-o <out-file>
|
||||
Write the single, reformatted <in-file> to <out-file>. <in-file>
|
||||
will not be modified.
|
||||
-d
|
||||
Enable script debug
|
||||
-p
|
||||
Comments are pre-formatted. Do not reformat.
|
||||
-h
|
||||
Show this help message and exit
|
||||
|
||||
The conversions make by the indent.sh script differs from the NuttX coding
|
||||
style in that:
|
||||
|
||||
1. The coding standard requires that the trailing */ of a multi-line
|
||||
comment be on a separate line. By default, indent.sh will put the
|
||||
final */ on the same line as the last comment text. If your C file
|
||||
already has properly formatted comments then using the -p option will
|
||||
eliminate that bad behavior
|
||||
2. If your source file has highly formatted comments containing things
|
||||
such as tables or lists, then use the -p option to preserve those
|
||||
pre-formatted comments.
|
||||
3. I usually align things vertically (like '=' in assignments),
|
||||
4. indent.sh puts a bogus blank line at the top of the file,
|
||||
5. I don't like the way it handles nested conditional compilation
|
||||
intermixed with code. I prefer the preprocessor conditional tests
|
||||
be all right justified in that case.
|
||||
6. I also indent brackets differently on structures than does this script.
|
||||
7. I normally use no spaces in casts. indent.sh adds spaces in casts like
|
||||
"(FAR void *)&foo" becomes "(FAR void *) & foo".
|
||||
8. When used with header files, the initial idempotence conditional test
|
||||
causes all preprocessor directives to be indented in the file. So for
|
||||
header files, you will need to substitute "^# " with "#" in the
|
||||
converted header file.
|
||||
|
||||
You will manually need to check for the issues listed above after
|
||||
performing the conversions. nxstyle.c provides a good test that will
|
||||
catch most of the indent.sh screw-ups. Together, they do a pretty good
|
||||
job of formatting.
|
||||
|
||||
See also nxstyle.c and uncrustify.cfg
|
||||
|
||||
kconfig.bat
|
||||
-----------
|
||||
|
||||
@@ -720,63 +733,59 @@ logparser.c
|
||||
logparser _git_log.tmp >_changelog.txt
|
||||
rm -f _git_log.tmp
|
||||
|
||||
indent.sh
|
||||
---------
|
||||
Makefile.host
|
||||
-------------
|
||||
|
||||
This script can be used to indent .c and .h files in a manner similar
|
||||
to the NuttX coding style. It doesn't do a really good job, however
|
||||
(see below and the comments at the top of the indent.sh file).
|
||||
This is the makefile that is used to make the mkconfig program from
|
||||
the mkconfig.c C file, the cmpconfig program from cmpconfig.c C file,
|
||||
the mkversion program from the mkconfig.c C file, or the mksyscall
|
||||
program from the mksyscall.c file. Usage:
|
||||
|
||||
USAGE:
|
||||
tools/indent.sh [-d] [-p] -o <out-file> <in-file>
|
||||
tools/indent.sh [-d] [-p] <in-file-list>
|
||||
tools/indent.sh [-d] -h
|
||||
cd tools/
|
||||
make -f Makefile.host <program>
|
||||
|
||||
Where:
|
||||
-<in-file>
|
||||
A single, unformatted input file
|
||||
-<in-file-list>
|
||||
A list of unformatted input files that will be reformatted in place.
|
||||
-o <out-file>
|
||||
Write the single, reformatted <in-file> to <out-file>. <in-file>
|
||||
will not be modified.
|
||||
-d
|
||||
Enable script debug
|
||||
-p
|
||||
Comments are pre-formatted. Do not reformat.
|
||||
-h
|
||||
Show this help message and exit
|
||||
mkromfsimg.sh
|
||||
-------------
|
||||
|
||||
The conversions make by the indent.sh script differs from the NuttX coding
|
||||
style in that:
|
||||
This script may be used to automate the generation of a ROMFS file system
|
||||
image. It accepts an rcS script "template" and generates an image that
|
||||
may be mounted under /etc in the NuttX pseudo file system.
|
||||
|
||||
1. The coding standard requires that the trailing */ of a multi-line
|
||||
comment be on a separate line. By default, indent.sh will put the
|
||||
final */ on the same line as the last comment text. If your C file
|
||||
already has properly formatted comments then using the -p option will
|
||||
eliminate that bad behavior
|
||||
2. If your source file has highly formatted comments containing things
|
||||
such as tables or lists, then use the -p option to preserve those
|
||||
pre-formatted comments.
|
||||
3. I usually align things vertically (like '=' in assignments),
|
||||
4. indent.sh puts a bogus blank line at the top of the file,
|
||||
5. I don't like the way it handles nested conditional compilation
|
||||
intermixed with code. I prefer the preprocessor conditional tests
|
||||
be all right justified in that case.
|
||||
6. I also indent brackets differently on structures than does this script.
|
||||
7. I normally use no spaces in casts. indent.sh adds spaces in casts like
|
||||
"(FAR void *)&foo" becomes "(FAR void *) & foo".
|
||||
8. When used with header files, the initial idempotence conditional test
|
||||
causes all preprocessor directives to be indented in the file. So for
|
||||
header files, you will need to substitute "^# " with "#" in the
|
||||
converted header file.
|
||||
TIP: Edit the resulting header file and mark the generated data values
|
||||
as 'const' so that they will be stored in FLASH.
|
||||
|
||||
You will manually need to check for the issues listed above after
|
||||
performing the conversions. nxstyle.c provides a good test that will
|
||||
catch most of the indent.sh screw-ups. Together, they do a pretty good
|
||||
job of formatting.
|
||||
mkdeps.c, cnvwindeps.c, mkwindeps.sh, and mknulldeps.sh
|
||||
-------------------------------------------------------
|
||||
|
||||
See also nxstyle.c and uncrustify.cfg
|
||||
NuttX uses the GCC compiler's capabilities to create Makefile dependencies.
|
||||
The program mkdeps is used to run GCC in order to create the dependencies.
|
||||
If a NuttX configuration uses the GCC toolchain, its Make.defs file (see
|
||||
boards/README.txt) will include a line like:
|
||||
|
||||
MKDEP = $(TOPDIR)/tools/mkdeps[.exe] (See NOTE below)
|
||||
|
||||
If the NuttX configuration does not use a GCC compatible toolchain, then
|
||||
it cannot use the dependencies and instead it uses mknulldeps.sh:
|
||||
|
||||
MKDEP = $(TOPDIR)/tools/mknulldeps.sh
|
||||
|
||||
The mknulldeps.sh is a stub script that does essentially nothing.
|
||||
|
||||
mkwindeps.sh is a version that creates dependencies using the Windows
|
||||
native toolchain. That generates Windows native paths in the dependency
|
||||
file. But the mkwindeps.sh uses cnvwindeps.c to convert the Windows
|
||||
paths to POSIX paths. This adds some time to the Windows dependency
|
||||
generation but is generally the best option available for that mixed
|
||||
environment of Cygwin with a native Windows GCC toolchain.
|
||||
|
||||
mkdeps.c generates mkdeps (on Linux) or mkdeps.exe (on Windows).
|
||||
However, this version is still under-development. It works well in
|
||||
the all POSIX environment or in the all Windows environment but also
|
||||
does not work well in mixed POSIX environment with a Windows toolchain.
|
||||
In that case, there are still issues with the conversion of things like
|
||||
'c:\Program Files' to 'c:program files' by bash. Those issues may,
|
||||
eventually be solvable but for now continue to use mkwindeps.sh in
|
||||
that mixed environment.
|
||||
|
||||
README.txt
|
||||
----------
|
||||
@@ -1043,18 +1052,15 @@ uncrustify.cfg
|
||||
|
||||
See also indent.sh and nxstyle.c
|
||||
|
||||
zds
|
||||
---
|
||||
|
||||
This directory contains build tools used only with the ZDS-II
|
||||
platforms (z8, ez80, zNeo).
|
||||
|
||||
zipme.sh
|
||||
--------
|
||||
|
||||
I use this script to create the nuttx-xx.yy.tar.gz tarballs for
|
||||
release on Bitbucket.org. It is handy because it also does the
|
||||
kind of clean that you need to do to make a clean code release.
|
||||
|
||||
flash_writer.py
|
||||
---------------
|
||||
|
||||
This flash writer is using the xmodem for firmware transfer on
|
||||
boards based on cxd56 chip (Ex. Spresense)
|
||||
|
||||
for flashing the .spk image to the board please use:
|
||||
tools/flash_writer.py -s -c /dev/ttyUSB0 -d -b 115200 -n nuttx.spk
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
/zdsar
|
||||
/zdsar.exe
|
||||
/*.dSYM
|
||||
@@ -0,0 +1,69 @@
|
||||
############################################################################
|
||||
# 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
|
||||
@@ -0,0 +1,11 @@
|
||||
README.txt
|
||||
==========
|
||||
|
||||
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 upi
|
||||
the build files but it also improves performance and, more importantly,i
|
||||
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.
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user