forked from LiamBindle/MQTT-C
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
39 lines (27 loc) · 1.18 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
UNAME = $(shell uname -o)
CC = gcc
CFLAGS = -Wextra -Wall -std=gnu99 -Iinclude -Wno-unused-parameter -Wno-unused-variable -Wno-duplicate-decl-specifier
ifeq ($(UNAME), Msys)
MSFLAGS = -lws2_32
endif
MQTT_C_SOURCES = src/mqtt.c src/mqtt_pal.c
MQTT_C_EXAMPLES = bin/simple_publisher bin/simple_subscriber bin/reconnect_subscriber bin/bio_publisher bin/openssl_publisher
MQTT_C_UNITTESTS = bin/tests
BINDIR = bin
all: $(BINDIR) $(MQTT_C_UNITTESTS) $(MQTT_C_EXAMPLES)
bin/simple_%: examples/simple_%.c $(MQTT_C_SOURCES)
$(CC) $(CFLAGS) $^ -lpthread $(MSFLAGS) -o $@
bin/reconnect_%: examples/reconnect_%.c $(MQTT_C_SOURCES)
$(CC) $(CFLAGS) $^ -lpthread $(MSFLAGS) -o $@
bin/bio_%: examples/bio_%.c $(MQTT_C_SOURCES)
$(CC) $(CFLAGS) `pkg-config --cflags openssl` -D MQTT_USE_BIO $^ -lpthread $(MSFLAGS) `pkg-config --libs openssl` -o $@
bin/openssl_%: examples/openssl_%.c $(MQTT_C_SOURCES)
$(CC) $(CFLAGS) `pkg-config --cflags openssl` -D MQTT_USE_BIO $^ -lpthread $(MSFLAGS) `pkg-config --libs openssl` -o $@
$(BINDIR):
mkdir -p $(BINDIR)
$(MQTT_C_UNITTESTS): tests.c $(MQTT_C_SOURCES)
$(CC) $(CFLAGS) $^ -lcmocka $(MSFLAGS) -o $@
clean:
rm -rf $(BINDIR)
check: all
./$(MQTT_C_UNITTESTS)