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
fe3a5c24
Commit
fe3a5c24
authored
13 years ago
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Fix up core library makefile clean target to properly remove dependency files.
parent
49424ce6
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
LUFA/makefile
+3
-3
3 additions, 3 deletions
LUFA/makefile
with
3 additions
and
3 deletions
LUFA/makefile
+
3
−
3
View file @
fe3a5c24
...
...
@@ -10,7 +10,7 @@
# ---------------------------------------
LUFA_VERSION_NUM
:=
$(
shell
grep
LUFA_VERSION_STRING Version.h |
cut
-d
'"'
-f2
)
EXCLUDE_FROM_EXPORT
:=
Documentation DoxygenPages CodeTemplates Build
*
.conf
*
.tar
*
.o
*
.lss
*
.lst
*
.hex
*
.elf
*
.hex
*
.eep
*
.map
*
.bin
*
.d
EXCLUDE_FROM_EXPORT
:=
Documentation DoxygenPages CodeTemplates Build
*
.conf
*
.tar
*
.o
*
.d
*
.lss
*
.lst
*
.hex
*
.elf
*
.hex
*
.eep
*
.map
*
.bin
all
:
...
...
@@ -26,6 +26,7 @@ version:
# Check if this is being included from a legacy or non LUFA build system makefile
ifneq
($(LUFA_PATH),)
LUFA_ROOT_PATH
=
$(
LUFA_PATH
)
/LUFA/
include
$(LUFA_PATH)/LUFA/Build/lufa.sources.in
else
LUFA_PATH
=
.
...
...
@@ -34,10 +35,9 @@ else
clean
:
rm
-f
$(
LUFA_SRC_ALL_FILES:%.c
=
%.o
)
rm
-f
$(
LUFA_SRC_ALL_FILES:%.c
=
%.
o.
d
)
rm
-f
$(
LUFA_SRC_ALL_FILES:%.c
=
%.d
)
rm
-f
$(
LUFA_SRC_ALL_FILES:%.c
=
%.lst
)
# Include LUFA build script makefiles
include
Build/lufa.core.in
include
Build/lufa.sources.in
include
Build/lufa.doxygen.in
...
...
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