From cbe16a234d75d27dfab552d724e2d1a1c3a08564 Mon Sep 17 00:00:00 2001 From: ame Date: Fri, 1 Aug 2025 11:41:39 -0500 Subject: install changes --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index cd80dc8..3d10a62 100644 --- a/makefile +++ b/makefile @@ -14,7 +14,7 @@ LFLAGS := -lm -shared -lcrypto -lssl LINKER := $(CC) TARGET := lullaby.so -INSTALL_DIR := /usr/local/lib/lua/ +INSTALL := /usr/local/lib/lua/ SRCS := $(wildcard src/*.c) $(wildcard src/*/*.c) OBJS := $(SRCS:.c=.o) @@ -33,8 +33,8 @@ release: CFLAGS += -O3 release: all install:: - mkdir $(INSTALL_DIR)$(install_version) -p - cp $(TARGET) $(INSTALL_DIR)$(install_version)/$(TARGET) + mkdir $(INSTALL)$(install_version) -p + cp $(TARGET) $(INSTALL)$(install_version)/$(TARGET) # ok so im pretty sure asan should be linked too, however dlclose needs to be masked anyways # and since libasan needs to be the first thing to load, you'll have to add it anyways -- cgit v1.2.3