nasmtests: Turn warnings into errors

This commit is contained in:
Fabian 2020-12-31 19:14:30 -06:00
parent fc3bf8583d
commit 32000594c1

View file

@ -11,7 +11,7 @@ all: $(source_files) $(obj_files) $(inc_files) $(host_executables) $(v86_executa
.PHONY: all
build/%.o: build/%.asm $(inc_files)
nasm -felf32 -o $@ $<
nasm -w+error -felf32 -o $@ $<
# To run / debug locally
build/%.bin: build/%.o