From cab7afe7af7a93f15c82fe5f4e50402ff1599ee6 Mon Sep 17 00:00:00 2001 From: Stilic Date: Fri, 1 Aug 2025 16:08:35 +0000 Subject: Update makefile --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 0a07ae9..cd80dc8 100644 --- a/makefile +++ b/makefile @@ -14,7 +14,7 @@ LFLAGS := -lm -shared -lcrypto -lssl LINKER := $(CC) TARGET := lullaby.so -INSTALL_DIR := /usr/lib64/lua/ +INSTALL_DIR := /usr/local/lib/lua/ SRCS := $(wildcard src/*.c) $(wildcard src/*/*.c) OBJS := $(SRCS:.c=.o) -- cgit v1.2.3 From e65c35bfe7a9f00f42170e5a6c1bff58cbfe3f47 Mon Sep 17 00:00:00 2001 From: Stilic Date: Fri, 1 Aug 2025 16:10:49 +0000 Subject: Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index b862d38..f67d8d0 100644 --- a/readme.md +++ b/readme.md @@ -41,7 +41,7 @@ build with `make`, output is `./lullaby.so` or (win)`./lullaby.dll` windows works through msys2, install `mingw-w64-x86_64-lua` then run `make CC=gcc` -you can install with `doas make install` which will install lullaby.so into /usr/lib64/lua/5.X/ +you can install with `doas make install` which will install lullaby.so into /usr/local/lib/lua/5.X lua version can be specified with `version=...`, similar to 5.1, 5.3, jit, the default it 5.4 -- cgit v1.2.3