summaryrefslogtreecommitdiff
path: root/mac80211/ti-utils/Makefile
blob: 5dc754fdcab00eafee5b8217714d973b66451ed4 (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
CC = $(CROSS_COMPILE)gcc
CFLAGS = -O2 -Wall
CFLAGS += -DCONFIG_LIBNL20 -I$(NFSROOT)/usr/include -I$(NFSROOT)/include

LDFLAGS += -L$(NFSROOT)/lib
LIBS += -lnl -lnl-genl -lm

OBJS = nvs.o misc_cmds.o calibrator.o 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)/home/root
    @cp -f ./calibrator $(NFSROOT)/home/root
    @cp -f ./scripts/go.sh $(NFSROOT)/home/root

clean:
    @rm -f *.o calibrator uim