1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tools/benchmark_udp: fix build

This commit is contained in:
Benjamin Valentin 2022-03-11 16:32:28 +01:00
parent ea44b2ead7
commit 22f17abee0

View File

@ -10,7 +10,7 @@ run:
$(BINARY) :: 12345
RIOTBASE:=../../..
RIOT_INCLUDES=-I$(RIOTBASE)/core/include -I$(RIOTBASE)/sys/include
RIOT_INCLUDES=-I$(RIOTBASE)/core/lib/include -I$(RIOTBASE)/sys/include
SRCS:=$(wildcard *.c)
$(BINARY): $(SRCS)
$(CC) $(CFLAGS) $(CFLAGS_EXTRA) $(RIOT_INCLUDES) -I.. $(SRCS) -o $@