mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 08:51:13 +00:00
88436e8d37
SVN-Revision: 6177
22 lines
371 B
Makefile
22 lines
371 B
Makefile
# $Id$
|
|
|
|
LIBSHARED_OBJS := shutils.o wl.o linux_timer.o
|
|
LIBNVRAM_OBJS := nvram.o
|
|
|
|
all: libshared.so libnvram.so nvram
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -I. -Iinclude -o $@ $^
|
|
|
|
libshared.so: $(LIBSHARED_OBJS)
|
|
$(CC) -shared -o $@ $^
|
|
|
|
libnvram.so: $(LIBNVRAM_OBJS)
|
|
$(CC) -shared -o $@ $^
|
|
|
|
nvram: main.o
|
|
$(CC) -o $@ $^ -L. -lnvram
|
|
|
|
clean:
|
|
rm -f *.o *.so nvram
|