mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-07-28 04:07:47 +00:00
30 lines
909 B
Makefile
30 lines
909 B
Makefile
SRC_PATH=./src
|
|
OUT_PATH=./bin
|
|
TEST_SRC=$(wildcard ${SRC_PATH}/*_spec.cpp)
|
|
TEST_BIN= $(TEST_SRC:${SRC_PATH}/%.cpp=${OUT_PATH}/%)
|
|
VPATH=${SRC_PATH}
|
|
SHIM_FILES=${SRC_PATH}/lib/*.cpp
|
|
PSC_FILE=../src/PubSubClient.cpp
|
|
CC=g++
|
|
CFLAGS=-std=c++11 -I${SRC_PATH}/lib -I../src
|
|
CFLAGS+=-pedantic -Werror -Wall -Wextra -Wcast-align -Wcast-qual -Wctor-dtor-privacy -Wdisabled-optimization -Wformat=2
|
|
CFLAGS+=-Winit-self -Wmissing-declarations -Wmissing-include-dirs -Wno-unused -Wnull-dereference -Woverloaded-virtual
|
|
CFLAGS+=-Wredundant-decls -Wreorder -Wsign-conversion -Wsign-promo -Wstrict-overflow=5 -Wswitch-default -Wundef
|
|
#CFLAGS+=-DDEBUG_PUBSUBCLIENT
|
|
|
|
all: $(TEST_BIN)
|
|
|
|
${OUT_PATH}/%: ${SRC_PATH}/%.cpp ${PSC_FILE} ${SHIM_FILES}
|
|
mkdir -p ${OUT_PATH}
|
|
${CC} ${CFLAGS} $^ -o $@
|
|
|
|
clean:
|
|
@rm -rf ${OUT_PATH}
|
|
|
|
test: all
|
|
@bin/connect_spec
|
|
@bin/publish_spec
|
|
@bin/receive_spec
|
|
@bin/subscribe_spec
|
|
@bin/keepalive_spec
|