diff options
| -rw-r--r-- | Makefile | 7 | ||||
| -rw-r--r-- | README.md | 8 |
2 files changed, 14 insertions, 1 deletions
@@ -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: @@ -297,6 +297,14 @@ sudo pkg update sudo pkg install gcc gmake libX11 libXinerama</code></pre> </details> +<details> +<summary>Termux</summary> +<pre><code> +pkg update +pkg install xcb-util-keysyms xorgproto libxcursor libx11 libxinerama libandroid-wordexp +</code></pre> +</details> + --- ## Build & Install |
