diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-02-24 15:46:58 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-02-24 15:46:58 +0000 |
commit | cfa48f5987ee00f1ef44959cedc6e5248f2bdfb9 (patch) | |
tree | 66a72828750019b8e6f392ccae8f1b984f3e5469 /Maintenance/makefile | |
parent | 2b4658de2c1012a465035a8015c13762334088ac (diff) | |
download | lufa-cfa48f5987ee00f1ef44959cedc6e5248f2bdfb9.tar.gz lufa-cfa48f5987ee00f1ef44959cedc6e5248f2bdfb9.tar.bz2 lufa-cfa48f5987ee00f1ef44959cedc6e5248f2bdfb9.zip |
Changed all *_SendByte() function prototypes to accept a void pointer for the input buffer (thanks to Simon Küppers) instead of a uint8_t pointer.
Diffstat (limited to 'Maintenance/makefile')
-rw-r--r-- | Maintenance/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Maintenance/makefile b/Maintenance/makefile index 9fe1b6a0e..d147839a0 100644 --- a/Maintenance/makefile +++ b/Maintenance/makefile @@ -24,7 +24,7 @@ upgrade-doxygen: # Make all possible bootloaders for all targets and configurations as set by the BootloaderTest build test # and store them in a separate directory called "Bootloaders" -make_bootloaders: +bootloaders: @echo "build_bootloaders:" > BuildMakefile @printf "\t-mkdir Bootloaders 2>/dev/null\n\n" >> BuildMakefile @@ -79,4 +79,4 @@ validate-branch: validate-release: check-documentation-placeholders validate-branch -.PHONY: all upgrade-doxygen make_bootloaders check-documentation-placeholders validate-branch
\ No newline at end of file +.PHONY: all upgrade-doxygen bootloaders check-documentation-placeholders validate-branch |