Makefile 293 Bytes
Newer Older
1
ifndef CFLAGS
2
CFLAGS = -O2 -g -I /usr/include/libnl3/
3
endif
4
LIBS=-lnl-3 -lnl-genl-3
5
6
7
8
9
all: swconfig

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

10
swconfig: cli.o swlib.o
11
	$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
Evgheni Dereveanchin's avatar
Evgheni Dereveanchin committed
12
13
14
15
16

clean:
	rm -f *~ *.o swconfig

install:
Evgheni Dereveanchin's avatar
Evgheni Dereveanchin committed
17
	install -D swconfig $(DESTDIR)$(PREFIX)/sbin/swconfig