RaspberrPi project source code
Guo Wenxue
2024-07-07 75843d7e163f97fd42f96661863c1de664b08cc8
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#********************************************************************************
#      Copyright:  (C) 2023 LingYun IoT System Studio
#                  All rights reserved.
#
#       Filename:  Makefile
#    Description:  This file is the project top Makefie
#
#        Version:  1.0.0(11/08/23)
#         Author:  Guo Wenxue <guowenxue@gmail.com>
#      ChangeLog:  1, Release initial version on "11/08/23 16:18:43"
#
#*******************************************************************************
 
PRJ_PATH=$(shell pwd)
APP_NAME = mqttd
 
BUILD_ARCH=$(shell uname -m)
ifneq ($(findstring $(BUILD_ARCH), "x86_64" "i386"),)
    CROSS_COMPILE=arm-linux-gnueabihf-
endif
 
# C source files in top-level directory
SRCFILES = $(wildcard *.c)
 
# common CFLAGS for our source code
CFLAGS = -Wall -Wshadow -Wundef -Wmaybe-uninitialized -D_GNU_SOURCE
 
# C source file in sub-directory
SRCS=booster modules coreJSON  coreMQTT  coreSNTP
SRCS_PATH=$(patsubst %,${PRJ_PATH}/%,$(SRCS))
CFLAGS+=$(patsubst %,-I%,$(SRCS_PATH))
LDFLAGS+=$(patsubst %,-L%,$(SRCS_PATH))
LIBS=$(patsubst %,-l%,$(SRCS))
LDFLAGS+=${LIBS}
 
# Open source libraries
CFLAGS+=-I ${PRJ_PATH}/openlibs/install/include
LDFLAGS+=-L ${PRJ_PATH}/openlibs/install/lib
 
# libraries
libs=openlibs ${SRCS}
LDFLAGS+=-lmosquitto -lcjson -lssl -lcrypto -lgpiod
 
LDFLAGS+=-lpthread
 
all: entry subdir
    ${CROSS_COMPILE}gcc ${CFLAGS} ${SRCFILES} -o ${APP_NAME} ${LDFLAGS}
    @make install
 
entry:
    @echo "Building ${APP_NAME} on ${BUILD_ARCH}"
 
subdir:
    @for dir in ${libs} ; do if [ ! -e $${dir} ] ; then ln -s ../$${dir}; fi; done
    @for dir in ${libs} ;  do make -C $${dir} ; done
 
install:
    cp ${APP_NAME} /tftp
 
clean:
    @for dir in ${SRCS} ; do if [ -e $${dir} ] ; then make clean -C $${dir}; fi; done
    @rm -f ${APP_NAME}
 
distclean:
    @for dir in ${libs} ; do if [ -e $${dir} ] ; then make clean -C $${dir}; fi; done
    @for dir in ${libs} ; do if [ -e $${dir} ] ; then unlink $${dir}; fi; done
    @rm -f ${APP_NAME}
    @rm -f cscope.* tags