diff options
author | pommicket <pommicket@gmail.com> | 2023-01-01 23:47:52 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-01 23:47:52 -0500 |
commit | 20ac640a6d0b8eb6343709ae6ef921b41a31a726 (patch) | |
tree | 32165e91d2851b35cae59691b84dfaf4aecc7b4d /Makefile | |
parent | 8c16344d5279eef6ed6ad18d4de7e8a2a5bf2f98 (diff) |
restructure syntax.c
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ INSTALL_BIN_DIR=/usr/bin ted: *.[ch] libpcre2-32.a stb_truetype.o stb_image.o $(CC) main.c stb_truetype.o stb_image.o -o ted $(DEBUG_CFLAGS) $(LIBS) %.o: %.c - $(CC) -Wall $< -c -o $@ + $(CC) -O3 -Wall $< -c -o $@ release: *.[ch] libpcre2-32.a $(CC) main.c -o ted $(RELEASE_CFLAGS) $(LIBS) profile: *.[ch] libpcre2-32.a |