We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916b37b commit 36b76e6Copy full SHA for 36b76e6
1 file changed
Makefile
@@ -2,9 +2,10 @@ CC=gcc
2
CFLAGS=-c -Wpedantic -Wall -fPIC
3
LD=ld
4
5
-all:
+all: sqlite3.o
6
$(CC) $(CFLAGS) -IRedisModulesSDK/ -Bstatic rediSQL.c -o rediSQL.o
7
$(LD) -o rediSQL.so rediSQL.o sqlite3.o RedisModulesSDK/rmutil/librmutil.a -shared -lc
8
-sqlite:
+
9
+sqlite3.o:
10
$(CC) -fPIC -c -o sqlite3.o sqlite3.c
11
0 commit comments