From a178b646d4d0a8f9e1a1d9c548d72e04903b5e60 Mon Sep 17 00:00:00 2001 From: yenatch Date: Fri, 6 Apr 2018 01:12:18 -0400 Subject: suppress assembler warnings for c files --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e46eee5ba..87d19422e 100644 --- a/Makefile +++ b/Makefile @@ -139,7 +139,7 @@ $(C_OBJECTS): $(BUILD_DIR)/%.o: %.c $$(C_DEP) $(CPP) $(CPPFLAGS) $< -o $(BUILD_DIR)/$*.i $(PREPROC) $(BUILD_DIR)/$*.i charmap.txt | $(CC1) $(CC1FLAGS) -o $(BUILD_DIR)/$*.s @printf ".text\n\t.align\t2, 0\n" >> $(BUILD_DIR)/$*.s - @$(AS) $(ASFLAGS) -o $@ $(BUILD_DIR)/$*.s + @$(AS) $(ASFLAGS) -W -o $@ $(BUILD_DIR)/$*.s # Only .s files in data need preproc $(BUILD_DIR)/data/%.o: data/%.s $$(ASM_DEP) -- cgit v1.2.3