1
0
mirror of https://github.com/prirun/p50em.git synced 2026-01-11 23:42:56 +00:00

makefile: add emwarn target to get crazy with compiler errors and warnings

This commit is contained in:
Jim 2020-03-09 16:38:26 -04:00
parent 4a6a3aff5d
commit 4fb9acdc77

View File

@ -7,7 +7,13 @@ REV=${shell hg id -n}
em: # Intel
rm -rf em.o
cc -DREV=\"${REV}\" -DNOTRACE -DFAST -DNOMEM -O em.c -o em
cc -DREV=\"${REV}\" -DNOTRACE -DFAST -DNOMEM -O -Winline em.c -o em
emwarn: # Intel
rm -rf em.o
cc -DREV=\"${REV}\" -DNOTRACE -DFAST -DNOMEM -O -Wall -Wextra -pedantic -Wconversion em.c -o em
debug: # gdb (Intel)