aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/config/swconfig/src/Makefile
blob: 1176bf0e40035db5a5af11072f8632dffc89bcb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ifndef CFLAGS
CFLAGS = -O2 -g -I ../src
endif
LIBS=-lnl -lnl-genl

all: swconfig

%.o: %.c
	$(CC) $(CFLAGS) -fPIC -c -o $@ $^

libsw.so: swlib.o
	$(CC) $(CFLAGS) -fPIC -shared -o $@ swlib.o

swconfig: libsw.so cli.o uci.o
	$(CC) $(LDFLAGS) -o $@ $^ $(LIBS) -L./ -lsw