mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-13 15:56:55 +00:00
8 lines
94 B
Makefile
8 lines
94 B
Makefile
all: nvram
|
|
|
|
nvram:
|
|
$(CC) $(CFLAGS) -o $@ cli.c crc.c nvram.c $(LDFLAGS)
|
|
|
|
clean:
|
|
rm -f nvram
|