mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
f163f1580b
Using `gnrc_border_router` with `uhcp` is quite noisy. uhcpc will regularly refresh the prefix and print a bunch of status messages. Allow the user to tone it down by setting a higher `LOG_LEVEL`. For this, convert calls to `printf()` and `puts()` to `LOG_xxx()`. This requires a dummy header for `uhcpd`.
18 lines
381 B
Makefile
18 lines
381 B
Makefile
CFLAGS?=-g -O3 -Wall
|
|
CFLAGS_EXTRA=-DUHCP_SERVER
|
|
all: bin bin/uhcpd
|
|
|
|
bin:
|
|
mkdir bin
|
|
|
|
RIOTBASE:=../../..
|
|
UHCP_DIR:=$(RIOTBASE)/sys/net/application_layer/uhcp
|
|
RIOT_INCLUDE=$(RIOTBASE)/sys/include
|
|
SRCS:=$(UHCP_DIR)/uhcp.c uhcpd.c
|
|
HDRS:=$(RIOT_INCLUDE)/net/uhcp.h
|
|
bin/uhcpd: $(SRCS) $(HDRS)
|
|
$(CC) $(CFLAGS) $(CFLAGS_EXTRA) -I$(RIOT_INCLUDE) -I. $(SRCS) -o $@
|
|
|
|
clean:
|
|
rm -f bin/uhcpd
|