diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-20 01:59:30 +0200 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-20 01:59:30 +0200 |
commit | 4c8eb3e8ce0616c377f8e31eeb658fb01807e4b5 (patch) | |
tree | f65880e50f825f8d858863af41a6521ccfb1e29e /Makefile | |
parent | 670d944f983a1063b6675b811a9d09910a1df2ec (diff) |
main: Start using renderer and set 60 fps
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,8 +4,8 @@ TEST_DIR ?= ./test LIB_DIR ?= ./lib BUILD_DIR ?= ./build -CFLAGS := -Wall -CFLAGS_TEST := -Isrc -Ithird_party -Llib -lmunit +CFLAGS := -Wall -lm +CFLAGS_TEST := -Isrc -Ithird_party -Llib -lmunit SRCS := $(wildcard $(SOURCE_DIR)/*.c) SRCS_TEST := $(wildcard $(TEST_DIR)/*.c) OBJS := $(patsubst $(SOURCE_DIR)/%.c, $(BUILD_DIR)/%.o, $(SRCS)) |