Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lufa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Erik Strand
lufa
Commits
a032d77d
Commit
a032d77d
authored
12 years ago
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Fix up some missing target dependencies and output messages in the LUFA build system makefiles.
parent
e186907e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
LUFA/Build/lufa_cppcheck.mk
+2
-2
2 additions, 2 deletions
LUFA/Build/lufa_cppcheck.mk
LUFA/Build/lufa_dfu.mk
+2
-2
2 additions, 2 deletions
LUFA/Build/lufa_dfu.mk
LUFA/Build/lufa_doxygen.mk
+3
-3
3 additions, 3 deletions
LUFA/Build/lufa_doxygen.mk
with
7 additions
and
7 deletions
LUFA/Build/lufa_cppcheck.mk
+
2
−
2
View file @
a032d77d
...
...
@@ -93,12 +93,12 @@ endif
MSG_CPPCHECK_CMD
:=
' [CPPCHECK]:'
# Checks the CPPCheck configuration as used in the user project, to determine if any paths are missing or invalid
cppcheck-config
:
cppcheck-config
:
$(MAKEFILE_LIST)
@
echo
$(
MSG_CPPCHECK_CMD
)
Checking cppcheck configuration check on
source
files
cppcheck
$(
BASE_CPPCHECK_FLAGS
)
--check-config
$(
CPPCHECK_FLAGS
)
$(
SRC
)
# Runs a static analysis using CPPCheck to determine if there are any issues
cppcheck
:
cppcheck
:
$(MAKEFILE_LIST)
@
echo
$(
MSG_CPPCHECK_CMD
)
Performing static analysis on
source
files
cppcheck
$(
BASE_CPPCHECK_FLAGS
)
--enable
=
$(
CPPCHECK_ENABLE
)
$(
CPPCHECK_SUPPRESS:%
=
--suppress
=
%
)
$(
CPPCHECK_FLAGS
)
$(
SRC
)
...
...
This diff is collapsed.
Click to expand it.
LUFA/Build/lufa_dfu.mk
+
2
−
2
View file @
a032d77d
...
...
@@ -71,13 +71,13 @@ flip: $(TARGET).hex $(MAKEFILE_LIST)
# Programs in the target EEPROM memory using BATCHISP, the command line tool used by FLIP
flip-ee
:
$(TARGET).eep $(MAKEFILE_LIST)
@
echo
$(
MSG_
DFU
_CMD
)
Copying EEP file to temporary file
\"
$<
.hex
\"
@
echo
$(
MSG_
COPY
_CMD
)
Copying EEP file to temporary file
\"
$<
.hex
\"
cp
$<
$<
.hex
@
echo
$(
MSG_DFU_CMD
)
Programming EEPROM with batchisp using
\"
$<
.hex
\"
batchisp
-hardware
usb
-device
$(
MCU
)
-operation
memory EEPROM erase
batchisp
-hardware
usb
-device
$(
MCU
)
-operation
memory EEPROM loadbuffer
$<
.hex program
batchisp
-hardware
usb
-device
$(
MCU
)
-operation
start reset 0
@
echo
$(
MSG_
DFU
_CMD
)
Removing temporary file
\"
$<
.hex
\"
@
echo
$(
MSG_
REMOVE
_CMD
)
Removing temporary file
\"
$<
.hex
\"
rm
$<
.hex
# Programs in the target FLASH memory using DFU-PROGRAMMER
...
...
This diff is collapsed.
Click to expand it.
LUFA/Build/lufa_doxygen.mk
+
3
−
3
View file @
a032d77d
...
...
@@ -82,17 +82,17 @@ $(DOXYGEN_CONF):
$(
error Doxygen configuration file
$@
does not exist
)
# Builds the project documentation using the specified configuration file and the DOXYGEN tool
doxygen
:
$(DOXYGEN_CONF)
doxygen
:
$(DOXYGEN_CONF)
$(MAKEFILE_LIST)
@
echo
$(
MSG_DOXYGEN_CMD
)
Configuration file
\"
$(
DOXYGEN_CONF
)
\"
with parameters
\"
$(
DOXYGEN_OVERRIDE_PARAMS
)
\"
$(
DOXYGEN_CMD
)
# Upgrades an existing Doxygen configuration file to the latest Doxygen template, preserving settings
doxygen_upgrade
:
$(DOXYGEN_CONF)
doxygen_upgrade
:
$(DOXYGEN_CONF)
$(MAKEFILE_LIST)
@
echo
$(
MSG_DOXYGEN_CMD
)
Upgrading configuration file
\"
$(
DOXYGEN_CONF
)
\"
with latest template
doxygen
-u
$(
DOXYGEN_CONF
)
>
/dev/null
# Creates a new Doxygen configuration file with the set file name
doxygen_create
:
doxygen_create
:
$(MAKEFILE_LIST)
@
echo
$(
MSG_DOXYGEN_CMD
)
Creating new configuration file
\"
$(
DOXYGEN_CONF
)
\"
with latest template
doxygen
-g
$(
DOXYGEN_CONF
)
>
/dev/null
...
...
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