9 lines
193 B
Makefile
9 lines
193 B
Makefile
CC=gcc
|
|
|
|
LDLIBS = -lofp -lrule -lua -lreg -lpcap -lnet -lpthread
|
|
user_openflow:main_user_openflow.c
|
|
$(CC) -o user_openflow main_user_openflow.c $(LDLIBS)
|
|
|
|
clean:
|
|
rm -rf user_openflow *.o
|