summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohnny Richard <johnny@johnnyrichard.com>2022-04-20 01:59:30 +0200
committerJohnny Richard <johnny@johnnyrichard.com>2022-04-20 01:59:30 +0200
commit4c8eb3e8ce0616c377f8e31eeb658fb01807e4b5 (patch)
treef65880e50f825f8d858863af41a6521ccfb1e29e /Makefile
parent670d944f983a1063b6675b811a9d09910a1df2ec (diff)
main: Start using renderer and set 60 fps
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2a46725..208cc9f 100644
--- a/Makefile
+++ b/Makefile
@@ -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))