diff options
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | test3.lisp | 1 |
2 files changed, 3 insertions, 2 deletions
@@ -2,8 +2,8 @@ CC ?= gcc AR ?= ar CHK_SOURCES ?= src/main.c $(SRCS) CPPFLAGS ?= -MMD -MP -CFLAGS ?= -flto -ffat-lto-objects -march=native --std=c99 -g -Ideps/ -Isrc/ -Iinclude/ -Wall -Wextra -Wpedantic -Wconversion -Wformat-security -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wnull-dereference -Wfloat-equal -Wundef -Wpointer-arith -Wbad-function-cast -Wlogical-op -Wmissing-braces -Wcast-align -Wstrict-overflow=5 -ftrapv -LDFLAGS ?= -flto -g -static +CFLAGS ?= -march=native --std=c99 -g -Ideps/ -Isrc/ -Iinclude/ -Wall -Wextra -Wpedantic -Wconversion -Wformat-security -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wnull-dereference -Wfloat-equal -Wundef -Wpointer-arith -Wbad-function-cast -Wlogical-op -Wmissing-braces -Wcast-align -Wstrict-overflow=5 -ftrapv +LDFLAGS ?= -g -static BUILD = build_$(CC) @@ -3,4 +3,5 @@ (bs/grow! 1 bs) (bs/write8! bs 0 67) (bs/spit! "test3.bin" bs) + ;; (bs/delete! bs) ) |
