Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
6936fcbd
Commit
6936fcbd
authored
Sep 11, 2012
by
Dean Camera
Browse files
Minor build system tweaks for platform compatibility.
parent
ce5f5bd1
Changes
2
Hide whitespace changes
Inline
Side-by-side
LUFA/Build/lufa_build.mk
View file @
6936fcbd
...
...
@@ -308,7 +308,7 @@ $(OBJDIR)/%.o: %.S $(MAKEFILE_LIST)
# Creates an assembly listing file from an input project ELF file, containing interleaved assembly and source data
%.lss
:
%.elf
@
echo
$(MSG_OBJDMP_CMD)
Extracting LSS file data from
\"
$<
\"
$(CROSS)
-objdump
-h
-S
-z
$<
>
$@
$(CROSS)
-objdump
-h
-d
-S
-z
$<
>
$@
# Creates a symbol file listing the loadable and discarded symbols from an input project ELF file
%.sym
:
%.elf
...
...
LUFA/Build/lufa_hid.mk
View file @
6936fcbd
...
...
@@ -50,6 +50,8 @@ LUFA_BUILD_PROVIDED_MACROS +=
#
# -----------------------------------------------------------------------------
SHELL
=
/bin/sh
ERROR_IF_UNSET
?=
$(
if
$(
filter
undefined,
$(
origin
$(
strip
$(1)
)))
,
$(
error
Makefile
$(
strip
$(1)
)
value not
set
))
ERROR_IF_EMPTY
?=
$(
if
$(
strip
$
(
$(
strip
$(1)
)))
, ,
$(
error
Makefile
$(
strip
$(1)
)
option cannot be blank
))
ERROR_IF_NONBOOL
?=
$(
if
$(
filter
Y N,
$
(
$(
strip
$(1)
)))
, ,
$(
error
Makefile
$(
strip
$(1)
)
option must be Y or N
))
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment