aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorame <[email protected]>2025-08-01 11:41:39 -0500
committerame <[email protected]>2025-08-01 11:41:39 -0500
commitcbe16a234d75d27dfab552d724e2d1a1c3a08564 (patch)
treea426ab1523472365a0b5a22915eb024627dc5680 /makefile
parent76641452ca62c308776edc03aee6b7e5e5886acf (diff)
install changes
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 3 insertions, 3 deletions
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