diff options
-rw-r--r-- | 1_hello_world/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/1_hello_world/Makefile b/1_hello_world/Makefile index 0beb163..0a4b3a2 100644 --- a/1_hello_world/Makefile +++ b/1_hello_world/Makefile @@ -1,5 +1,5 @@ WARNFLAGS = -Wall -Wextra -pedantic -Wshadow -Wlogical-op -OPTFLAGS = -Os -flto +OPTFLAGS = -Os ARCHFLAGS = -m68000 _CFLAGS = $(CFLAGS) $(WARNFLAGS) $(ARCHFLAGS) $(OPTFLAGS) -g3 -ffunction-sections -fdata-sections LDSCRIPTS = m68k.ld _sram.ld _rom.ld |