aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2019-09-22 14:16:07 +0200
committerMarvin Borner2019-09-22 14:16:07 +0200
commitbaa222bb0847b8153a00a8cbf67cfbb9694325b9 (patch)
treeb7bf6c18d3cea1b5f2cdf7d19ad4b7f6aeba2b23 /Makefile
parent678407d44a28b7a7afd6f3873aa2fc36bbcf5e55 (diff)
Fixed several GCC warnings
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 39f168c..4afcb27 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ build: clean
stripped=$$(echo "$${line}" | sed -r 's/\//_/g'); \
stripped=$${stripped#??????}; \
stripped=$${stripped%%?}o; \
- i686-elf-gcc -c ./"$${line}" -o ./build/"$${stripped}" -std=gnu99 -ffreestanding -O2 -Wall -Wextra || exit; \
+ i686-elf-gcc -c ./"$${line}" -o ./build/"$${stripped}" -std=gnu99 -ffreestanding -O2 -Wall -Wextra -Wno-unused-parameter || exit; \
done <./build/tmp; \
rm ./build/tmp; \