mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-31 14:53:07 +01:00
7 lines
94 B
Makefile
7 lines
94 B
Makefile
all: nvram
|
|
|
|
nvram:
|
|
$(CC) $(CFLAGS) -o $@ cli.c crc.c nvram.c $(LDFLAGS)
|
|
|
|
clean:
|
|
rm -f nvram
|