You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
287 B
Makefile
16 lines
287 B
Makefile
CFLAGS=-Wall -ggdb
|
|
LDFLAGS=../../lib/libmosquitto.so.1 -lmysqlclient
|
|
|
|
.PHONY: all clean
|
|
|
|
all : mosquitto_mysql_log
|
|
|
|
mosquitto_mysql_log : mysql_log.o
|
|
${CC} $^ -o $@ ${LDFLAGS}
|
|
|
|
mysql_log.o : mysql_log.c
|
|
${CC} -c $^ -o $@ ${CFLAGS} -I../../lib
|
|
|
|
clean :
|
|
-rm -f *.o mosquitto_mysql_log
|