We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91ca29d commit cd944c1Copy full SHA for cd944c1
1 file changed
Makefile
@@ -23,8 +23,6 @@ LUA_CMODULE_DIR ?= $(PREFIX)/lib/lua/$(LUA_VERSION)
23
LUA_MODULE_DIR ?= $(PREFIX)/share/lua/$(LUA_VERSION)
24
LUA_BIN_DIR ?= $(PREFIX)/bin
25
26
-AR= $(CC) -o
27
-
28
##### Platform overrides #####
29
##
30
## Tweak one of the platform sections below to suit your situation.
@@ -99,7 +97,7 @@ all: $(TARGET)
99
97
doc: manual.html performance.html
100
98
101
$(TARGET): $(OBJS)
102
- $(AR) $@ $(LDFLAGS) $(CJSON_LDFLAGS) $(OBJS)
+ $(CC) -o $@ $(LDFLAGS) $(CJSON_LDFLAGS) $(OBJS)
103
104
install: $(TARGET)
105
mkdir -p $(DESTDIR)$(LUA_CMODULE_DIR)
0 commit comments