Commit 4685802b authored by Joanne Hugé's avatar Joanne Hugé

Fix small mistake in makefile

parent 493e215a
......@@ -40,10 +40,10 @@ xdp_kern.o:
llc -march=bpf -filetype=obj -o xdp_kern.o xdp_kern.ll
ifneq ($(WITH_XDP),)
$(SERVER_PROG): $(SERVER_OBJS)
$(SERVER_PROG): $(SERVER_OBJS) xdp_kern.o
$(CC) $(LDFLAGS) $(LDIRS) $^ $(LLIBS) -o $@
else
$(SERVER_PROG): $(SERVER_OBJS), xdp_kern.o
$(SERVER_PROG): $(SERVER_OBJS)
$(CC) $(LDFLAGS) $(LDIRS) $^ $(LLIBS) -o $@
endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment