Skip to content
GitLab
Menu
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
d887c0c7
Commit
d887c0c7
authored
Jun 04, 2012
by
Dean Camera
Browse files
Fix typos in recursive make rules.
parent
49ca5c3c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Bootloaders/makefile
View file @
d887c0c7
...
...
@@ -13,7 +13,7 @@
# custom LUFA library build options are reflected in the compiled
# code.
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
)
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
/
)
# This makefile is potentially infinitely recursive if something really bad
# happens when determining the set of project directories - hard-abort if
...
...
Demos/Device/LowLevel/makefile
View file @
d887c0c7
...
...
@@ -13,7 +13,7 @@
# custom LUFA library build options are reflected in the compiled
# code.
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
)
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
/
)
# This makefile is potentially infinitely recursive if something really bad
# happens when determining the set of project directories - hard-abort if
...
...
Demos/DualRole/ClassDriver/makefile
View file @
d887c0c7
...
...
@@ -13,7 +13,7 @@
# custom LUFA library build options are reflected in the compiled
# code.
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
)
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
/
)
# This makefile is potentially infinitely recursive if something really bad
# happens when determining the set of project directories - hard-abort if
...
...
Demos/Host/ClassDriver/makefile
View file @
d887c0c7
...
...
@@ -13,7 +13,7 @@
# custom LUFA library build options are reflected in the compiled
# code.
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
)
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
/
)
# This makefile is potentially infinitely recursive if something really bad
# happens when determining the set of project directories - hard-abort if
...
...
Demos/Host/LowLevel/makefile
View file @
d887c0c7
...
...
@@ -13,7 +13,7 @@
# custom LUFA library build options are reflected in the compiled
# code.
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
)
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
/
)
# This makefile is potentially infinitely recursive if something really bad
# happens when determining the set of project directories - hard-abort if
...
...
Projects/makefile
View file @
d887c0c7
...
...
@@ -13,7 +13,7 @@
# custom LUFA library build options are reflected in the compiled
# code.
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
)
PROJECT_DIRECTORIES
=
$(
shell
ls
-d
*
/
)
# This makefile is potentially infinitely recursive if something really bad
# happens when determining the set of project directories - hard-abort if
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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