diff options
author | Marvin Borner | 2019-09-22 14:16:07 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-22 14:16:07 +0200 |
commit | baa222bb0847b8153a00a8cbf67cfbb9694325b9 (patch) | |
tree | b7bf6c18d3cea1b5f2cdf7d19ad4b7f6aeba2b23 /Makefile | |
parent | 678407d44a28b7a7afd6f3873aa2fc36bbcf5e55 (diff) |
Fixed several GCC warnings
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; \ |