summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWelpyes <helloilikeoppai@protonmail.com>2025-09-25 12:29:36 +0800
committerWelpyes <helloilikeoppai@protonmail.com>2025-09-25 12:29:36 +0800
commitc9bed3541401d78e5e0a3673a138f81ba66023fc (patch)
tree94eb5885469c48631e039661e8a8007fb678786b /Makefile
parent6c8f46da2c3edb191de1850b43fdd0a61ac79240 (diff)
yeah
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c283518..b80f809 100644
--- a/Makefile
+++ b/Makefile
@@ -34,12 +34,17 @@ LDFLAGS ?= -Wl,-O1 -pie
# libraries
LDLIBS ?= -lX11 -lXinerama -lXcursor
-# prefer pkg-confgi
+# prefer pkg-config
ifneq ($(shell $(PKG_CONFIG) --exists x11 xinerama xcursor && echo yes),)
CPPFLAGS += $(shell $(PKG_CONFIG) --cflags x11 xinerama xcursor)
LDLIBS := $(shell $(PKG_CONFIG) --libs x11 xinerama xcursor)
endif
+# Termux detection for libandroid-wordexp
+ifneq ($(shell if [ "$$PREFIX" = "/data/data/com.termux/files/usr" ]; then echo yes; fi),)
+LDLIBS += -landroid-wordexp
+endif
+
.PHONY: all clean install uninstall clangd
.SUFFIXES: