12 lines
255 B
Makefile
12 lines
255 B
Makefile
CC = arm-linux-gnueabihf-gcc
|
|
|
|
CFLAGS += -I./include -L./lib
|
|
|
|
LDLIBS = -lofp -lrule -lua -lreg -lpcap -lnet -lpthread
|
|
|
|
user_openflow:main_user_openflow.c
|
|
$(CC) $(CFLAGS) -o user_openflow main_user_openflow.c $(LDLIBS)
|
|
|
|
clean:
|
|
rm -rf user_openflow *.o
|