mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-01 05:23:09 +02:00
18 lines
354 B
Makefile
18 lines
354 B
Makefile
|
CC=gcc
|
||
|
WFLAGS=-Wall
|
||
|
CFLAGS=-O2
|
||
|
INCLUDES=-Iinclude
|
||
|
|
||
|
LIBNAME=libnl-tiny.so
|
||
|
|
||
|
all: $(LIBNAME)
|
||
|
|
||
|
%.o: %.c
|
||
|
$(CC) $(WFLAGS) -c -o $@ $(INCLUDES) $(CFLAGS) $<
|
||
|
|
||
|
LIBNL_OBJ=nl.o handlers.o msg.o attr.o cache.o cache_mngt.o object.o socket.o error.o
|
||
|
GENL_OBJ=genl.o genl_family.o genl_ctrl.o genl_mngt.o
|
||
|
|
||
|
$(LIBNAME): $(LIBNL_OBJ) $(GENL_OBJ)
|
||
|
$(CC) -shared -o $@ $^
|