diff options
author | yenatch <yenatch@gmail.com> | 2018-04-06 01:12:18 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2018-04-06 01:12:18 -0400 |
commit | a178b646d4d0a8f9e1a1d9c548d72e04903b5e60 (patch) | |
tree | 060ea2d366fbfb30282b74cd12fb1f0fa8e725a7 | |
parent | 669ec39a834bf8aadb32f8223182ee8429fe68ec (diff) |
suppress assembler warnings for c files
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |