mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-14 23:09:45 +01:00
16 lines
247 B
Makefile
16 lines
247 B
Makefile
|
|
LIBNVRAM_OBJS := nvram.o
|
|
|
|
all: libnvram.so nvram
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -I. -Iinclude -o $@ $^
|
|
|
|
libnvram.so: $(LIBNVRAM_OBJS)
|
|
$(CC) -shared -o $@ $^
|
|
|
|
nvram: main.o
|
|
$(CC) -o $@ $^ -L. -lnvram
|
|
|
|
clean:
|
|
rm -f *.o *.so nvram
|