Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
NuttX RTOS
Commits
a8f36d65
Commit
a8f36d65
authored
7 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
z80 Make.defs: Fixes dependency generation with newest SDCC compiler.
parent
94f3cb00
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configs/xtrs/scripts/Make.defs
+8
-4
8 additions, 4 deletions
configs/xtrs/scripts/Make.defs
configs/z80sim/scripts/Make.defs
+8
-4
8 additions, 4 deletions
configs/z80sim/scripts/Make.defs
with
16 additions
and
8 deletions
configs/xtrs/scripts/Make.defs
+
8
−
4
View file @
a8f36d65
...
...
@@ -81,7 +81,7 @@ AFLAGS = -x -a -l -o -s -g
SDCCLIB = z80.lib
ASMEXT = .asm
OBJEXT = .
o
OBJEXT = .
rel
LIBEXT = .lib
EXEEXT = .cmd
...
...
@@ -130,7 +130,7 @@ ifeq ($(CONFIG_WINDOWS_NATIVE),y)
# Windows-native host tools
MKDEP = $(TOPDIR)\tools\mkdeps
.exe
--winnative
MKDEP = $(TOPDIR)\tools\mkdeps
$(HOSTEXEEXT)
--winnative
# Use NTFS links or directory copies
...
...
@@ -150,9 +150,13 @@ else
HOSTCFLAGS = -Wall -Wstrict-prototypes -Wshadow -Wundef -g -pipe
HOSTLDFLAGS =
# This is the tool to use for dependencies
(i.e., none)
# This is the tool to use for dependencies
MKDEP = $(TOPDIR)$(DELIM)tools$(DELIM)mkwindeps.sh
ifeq ($(WINTOOL),y)
MKDEP = $(TOPDIR)$(DELIM)tools$(DELIM)mkwindeps.sh
else
MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT)
endif
# SDCC for Linux, OSX, or Cygwin understands symbolic links. Windows SDCC
# running under Cygwin does not
...
...
This diff is collapsed.
Click to expand it.
configs/z80sim/scripts/Make.defs
+
8
−
4
View file @
a8f36d65
...
...
@@ -81,7 +81,7 @@ AFLAGS = -x -a -l -o -s -g
SDCCLIB = z80.lib
ASMEXT = .asm
OBJEXT = .
o
OBJEXT = .
rel
LIBEXT = .lib
EXEEXT = .hex
...
...
@@ -130,7 +130,7 @@ ifeq ($(CONFIG_WINDOWS_NATIVE),y)
# Windows-native host tools
MKDEP = $(TOPDIR)\tools\mkdeps
.exe
--winnative
MKDEP = $(TOPDIR)\tools\mkdeps
$(HOSTEXEEXT)
--winnative
# Use NTFS links or directory copies
...
...
@@ -150,9 +150,13 @@ else
HOSTCFLAGS = -Wall -Wstrict-prototypes -Wshadow -Wundef -g -pipe
HOSTLDFLAGS =
# This is the tool to use for dependencies
(i.e., none)
# This is the tool to use for dependencies
MKDEP = $(TOPDIR)$(DELIM)tools$(DELIM)mkwindeps.sh
ifeq ($(WINTOOL),y)
MKDEP = $(TOPDIR)$(DELIM)tools$(DELIM)mkwindeps.sh
else
MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT)
endif
# SDCC for Linux, OSX, or Cygwin understands symbolic links. Windows SDCC
# running under Cygwin does not
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment