blob: 4ae2f2e9147a99fab9a6bf983c299a0245eaa15a (
plain)
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
|
### Application-specific constants
APP_NAME=loragw_band_survey
### constant symbols
CC=gcc
CFLAGS=-O2 -Wall -Wextra -Iinc
C99FLAGS=-O2 -Wall -Wextra -std=c99 -Iinc
FLAG_AUX=
### constants for Lora Gateway HAL library
LGW_PATH=../libloragw
LGW_INC=-I$(LGW_PATH)/inc
LGW_LNK=-lloragw -lrt -lmpsse
#LGW_LNK=-lloragw -lrt
# add libmpsse or not, depending on what option you compiled the libloragw with
### general build targets
all: $(APP_NAME)
clean:
rm -f obj/*.o
rm -f $(APP_NAME)
### sub-modules compilation
### main program compilation and assembly
obj/$(APP_NAME).o: src/$(APP_NAME).c src/rssi_fw.var
$(CC) -c $(C99FLAGS) -o obj/$(APP_NAME).o $(LGW_INC) src/$(APP_NAME).c $(FLAG_AUX)
$(APP_NAME): $(LGW_PATH)/libloragw.a obj/$(APP_NAME).o
$(CC) -o $(APP_NAME) obj/$(APP_NAME).o -L$(LGW_PATH) $(LGW_LNK)
|