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
80fab49e
Commit
80fab49e
authored
12 years ago
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Add "mostlyclean" makefile target to the BUILD build system module.
parent
aba33a03
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
LUFA/Build/lufa.build.in
+9
-4
9 additions, 4 deletions
LUFA/Build/lufa.build.in
LUFA/DoxygenPages/BuildSystem.txt
+7
-0
7 additions, 0 deletions
LUFA/DoxygenPages/BuildSystem.txt
makefile
+3
-3
3 additions, 3 deletions
makefile
with
19 additions
and
7 deletions
LUFA/Build/lufa.build.in
+
9
−
4
View file @
80fab49e
...
...
@@ -7,7 +7,7 @@
#
LUFA_BUILD_MODULES += BUILD
LUFA_BUILD_TARGETS += size check-source symbol-sizes all lib elf hex lss clean
LUFA_BUILD_TARGETS += size check-source symbol-sizes all lib elf hex lss clean
mostlyclean
LUFA_BUILD_MANDATORY_VARS += TARGET ARCH MCU SRC F_USB LUFA_PATH
LUFA_BUILD_OPTIONAL_VARS += BOARD OPTIMIZATION C_STANDARD CPP_STANDARD F_CPU C_FLAGS CPP_FLAGS ASM_FLAGS CC_FLAGS LD_FLAGS OBJDIR
LUFA_BUILD_PROVIDED_VARS +=
...
...
@@ -32,7 +32,10 @@ LUFA_BUILD_PROVIDED_MACROS +=
# elf - Build application ELF debug object file
# hex - Build application HEX object files
# lss - Build application LSS assembly listing file
# clean - Remove output files
# clean - Remove all project intermediatary and binary
# output files
# mostlyclean - Remove intermediatary output files, but
# preserve binaries
#
# MANDATORY PARAMETERS:
#
...
...
@@ -211,11 +214,13 @@ symbol-sizes: $(TARGET).elf
@echo $(MSG_NM_CMD) Extracting \"$<\" symbols with decimal byte sizes
$(CROSS)-nm --size-sort --demangle --radix=d $<
clean:
mostly
clean:
@echo $(MSG_REMOVE_CMD) Removing object files of \"$(TARGET)\"
rm -f $(OBJECT_FILES)
@echo $(MSG_REMOVE_CMD) Removing dependency files of \"$(TARGET)\"
rm -f $(DEPENDENCY_FILES)
clean: mostlyclean
@echo $(MSG_REMOVE_CMD) Removing output files of \"$(TARGET)\"
rm -f $(TARGET).elf $(TARGET).hex $(TARGET).eep $(TARGET).map $(TARGET).lss $(TARGET).sym $(TARGET).a
...
...
@@ -271,4 +276,4 @@ $(OBJDIR)/%.o: %.S $(MAKEFILE_LIST)
-include $(DEPENDENCY_FILES)
# Phony build targets for this module
.PHONY: build_begin build_end gcc-version check-source size symbol-sizes lib elf hex lss clean
.PHONY: build_begin build_end gcc-version check-source size symbol-sizes lib elf hex lss clean
mostlyclean
This diff is collapsed.
Click to expand it.
LUFA/DoxygenPages/BuildSystem.txt
+
7
−
0
View file @
80fab49e
...
...
@@ -12,6 +12,9 @@
* application makefile. The system is written in GNU Make, and each module is independant of
* one-another.
*
* For details on the prerequisites needed for Linux and Windows machines to be able to use the LUFA
* build system, see \ref Sec_Prerequisites.
*
* To use a LUFA build system module, simply add an include to your project makefile:
* \code
* include $(LUFA_PATH)/Build/lufa.core.in
...
...
@@ -97,6 +100,10 @@
* <td><tt>clean</tt></td>
* <td>Remove all intermediatary files and binary output files.</td>
* </tr>
* <tr>
* <td><tt>mostlyclean</tt></td>
* <td>Remove all intermediatary files but preserve any binary output files.</td>
* </tr>
* </table>
*
* \section SSec_BuildModule_BUILD_MandatoryParams Mandatory Parameters
...
...
This diff is collapsed.
Click to expand it.
makefile
+
3
−
3
View file @
80fab49e
...
...
@@ -9,9 +9,9 @@
# Makefile to build the LUFA library, projects and demos.
# Call with "make all" to rebuild everything, "make clean" to clean everything,
# "make clean
_list
" to remove all intermediatary files but preserve any binaries,
# "make doxygen" to document everything with Doxygen (if installed)
and
# "make
clean_doxygen" to remove generated Doxygen documentation from everything
.
# "make
mostly
clean" to remove all intermediatary files but preserve any binaries,
# "make doxygen" to document everything with Doxygen (if installed)
. Call
# "make
help" for additional target build information within a specific project
.
all
:
%
:
...
...
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