aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d9a887a..13e4ae2 100644
--- a/Makefile
+++ b/Makefile
@@ -11,9 +11,11 @@ __CFLAGS := -std=c99 \
-Wall \
-DCALCULER_VERSION=\"$(CALCULER_VERSION)\" \
-DCALCULER_PREFIX=\"$(PREFIX)\" \
- $(shell pkg-config --cflags readline)
+ $(shell pkg-config --cflags readline) \
+ $(shell pkg-config --cflags raylib)
__LDFLAGS :=
-__LIBS := $(shell pkg-config --libs readline)
+__LIBS := $(shell pkg-config --libs readline) \
+ $(shell pkg-config --libs raylib)
all: $(PROG) libcli.so libtui.so libray.so