Skip to content

Commit feb7519

Browse files
committed
Fix makefile
1 parent 59f853e commit feb7519

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mysql-plugin/src/makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ SERVER_ADDRESS?=127.0.0.1
66

77
${TARGET} : ${TARGET}.c
88
${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
9+
${CC} -shared -o $@.so $@.o
1010

11-
${TARGET}.so : ${TARGET}.o
12-
${CC} -shared -o $@ $?
11+
# ${TARGET}.so : ${TARGET}.o
12+
# ${CC} -shared -o $@ $?
1313

1414
install : ${TARGET}.so
1515
cp $? ${MYSQL_PLUGIN_DIR}/${TARGET}.so

0 commit comments

Comments
 (0)