forked from TheThingsArchive/lora_gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
76 lines (50 loc) · 1.52 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
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
69
70
71
72
73
74
75
76
### Application-specific constants
APP_NAME := util_pkt_logger
### Environment constants
LGW_PATH ?= ../libloragw
ARCH ?=
CROSS_COMPILE ?=
### External constant definitions
include $(LGW_PATH)/library.cfg
### Constant symbols
CC := $(CROSS_COMPILE)gcc
AR := $(CROSS_COMPILE)ar
CFLAGS=-O2 -Wall -Wextra -std=c99 -Iinc -I.
OBJDIR = obj
### Constants for LoRa concentrator HAL library
# List the library sub-modules that are used by the application
LGW_INC = $(LGW_PATH)/inc/config.h
LGW_INC += $(LGW_PATH)/inc/loragw_hal.h
### Linking options
ifeq ($(CFG_SPI),native)
LIBS := -lloragw -lrt -lm
else ifeq ($(CFG_SPI),ftdi)
LIBS := -lloragw -lrt -lmpsse -lm
else ifeq ($(CFG_SPI),mac)
LIBS := -lloragw -lmpsse -lm
endif
### General build targets
all: $(APP_NAME)
clean:
rm -f $(OBJDIR)/*.o
rm -f $(APP_NAME)
### HAL library (do no force multiple library rebuild even with 'make -B')
$(LGW_PATH)/inc/config.h:
@if test ! -f $@; then \
$(MAKE) all -C $(LGW_PATH); \
fi
$(LGW_PATH)/libloragw.a: $(LGW_INC)
@if test ! -f $@; then \
$(MAKE) all -C $(LGW_PATH); \
fi
### Sub-modules compilation
$(OBJDIR):
mkdir -p $(OBJDIR)
$(OBJDIR)/parson.o: src/parson.c inc/parson.h | $(OBJDIR)
$(CC) -c $(CFLAGS) $< -o $@
### Main program compilation and assembly
$(OBJDIR)/$(APP_NAME).o: src/$(APP_NAME).c $(LGW_INC) inc/parson.h | $(OBJDIR)
$(CC) -c $(CFLAGS) -I$(LGW_PATH)/inc $< -o $@
$(APP_NAME): $(OBJDIR)/$(APP_NAME).o $(LGW_PATH)/libloragw.a $(OBJDIR)/parson.o
$(CC) -L$(LGW_PATH) $< $(OBJDIR)/parson.o -o $@ $(LIBS)
### EOF