We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f853e commit feb7519Copy full SHA for feb7519
mysql-plugin/src/makefile
@@ -6,10 +6,10 @@ SERVER_ADDRESS?=127.0.0.1
6
7
${TARGET} : ${TARGET}.c
8
${CC} -c -D SERVER_PORT=${SERVER_PORT} -D SERVER_ADDRESS=\"${SERVER_ADDRESS}\" -Wall -fpic ${CFLAGS} -o $@.o -I${MYSQL_INCLUDE_DIR} $?
9
- #touch ${TARGET}.o
+ ${CC} -shared -o $@.so $@.o
10
11
-${TARGET}.so : ${TARGET}.o
12
- ${CC} -shared -o $@ $?
+# ${TARGET}.so : ${TARGET}.o
+# ${CC} -shared -o $@ $?
13
14
install : ${TARGET}.so
15
cp $? ${MYSQL_PLUGIN_DIR}/${TARGET}.so
0 commit comments