summaryrefslogtreecommitdiff
path: root/Makefile
blob: cd9ab98022f5273508f8f28a99085f379e965afe (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Requisites:
#	sudo apt-get install libnl-3-dev:armhf
#	sudo apt install libnl-3-200:armhf
#	sudo apt install libnl-genl-3-200:armhf
# last check, if linker fails then you should create
# this link manually: 
# /lib/arm-linux-gnueabihf/libnl-genl-3.so -> libnl-genl-3.so.200.22.0
	

CC = $(CROSS_COMPILE)gcc
CFLAGS = -O2 -Wall
CFLAGS += -I/usr/include -I/usr/include/libnl3

ifdef NLROOT
CFLAGS += -I${NLROOT}
endif

LDFLAGS += -L/lib/arm-linux-gnueabihf/
LIBS += -lm

# Ubuntu 16.04
NLVER = 3

ifeq ($(NLVER),3)
	CFLAGS+=-DCONFIG_LIBNL32
	LIBS += -lnl-3 -lnl-genl-3
else
	CFLAGS+=-DCONFIG_LIBNL20
	LIBS += -lnl -lnl-genl
endif

OBJS = nvs.o misc_cmds.o calibrator.o plt.o wl18xx_plt.o ini.o

%.o: %.c calibrator.h nl80211.h plt.h nvs_dual_band.h
	$(CC) $(CFLAGS) -c -o $@ $<

all: $(OBJS) 
	$(CC) $(LDFLAGS) $(OBJS) $(LIBS) -o calibrator

uim:
	$(CC) $(CFLAGS) $(LDFLAGS) uim_rfkill/$@.c -o $@

static: $(OBJS) 
	$(CC) $(LDFLAGS) --static $(OBJS) $(LIBS) -o calibrator

install:
	@echo Copy files to $(NFSROOT)/usr/bin
	@cp -f ./calibrator $(NFSROOT)/usr/bin
	@chmod 755 $(NFSROOT)/usr/bin/calibrator

clean:
	@rm -f *.o calibrator uim