diff options
| author | ame <[email protected]> | 2025-08-01 11:41:39 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2025-08-01 11:41:39 -0500 |
| commit | cbe16a234d75d27dfab552d724e2d1a1c3a08564 (patch) | |
| tree | a426ab1523472365a0b5a22915eb024627dc5680 /makefile | |
| parent | 76641452ca62c308776edc03aee6b7e5e5886acf (diff) | |
install changes
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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
|
