summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-04-16 17:10:02 +0200
committernasr <nsrddyn@gmail.com>2026-04-16 17:10:02 +0200
commit8ea6a3c8621287d11296b8300029f32a27743d9a (patch)
treecd12aa5fcd3e058fa74b45705c7b82524658d444 /Makefile
parentf430bfe8f71430032bec689bf0bbdc94ac409c22 (diff)
feature(checkpoint): checkpoint cleaning up base library
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fc49e88..968ea4b 100755
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,12 @@
1.PHONY: all clean 1.PHONY: all clean
2 2
3CC := gcc 3CC := gcc
4CFLAGS := -I. -Wall -Wextra -Wno-unused-function -Wno-unused-variable -DCORE_UNITY 4CFLAGS := -I. -Wall -Wextra -Wno-unused-function -Wno-unused-variable -Dtb_UNITY
5LDLIBS := -lX11 -lm 5LDLIBS := -lX11 -lm
6 6
7BUILD_DIR := build 7BUILD_DIR := build
8TARGET := $(BUILD_DIR)/app 8TARGET := $(BUILD_DIR)/app
9SOURCE := source/core/core.c 9SOURCE := source/tb/tb.c
10 10
11all: $(TARGET) 11all: $(TARGET)
12 12