Adding the first implementation of the OBAMP plugin. See README file for documentation.
3 PLUGIN_NAME = olsrd_obamp
7 include $(TOPDIR)/Makefile.inc
9 #LIBS += $(OS_LIB_PTHREAD)
11 # Must be specified along with -lpthread on linux
12 #CPPFLAGS += $(OS_CFLAG_PTHREAD)
16 default_target install clean:
17 @echo "*** OBAMP Plugin only supported on Linux, sorry!"
21 default_target: $(PLUGIN_FULLNAME)
23 $(PLUGIN_FULLNAME): $(OBJS) version-script.txt
24 $(CC) $(LDFLAGS) -o $(PLUGIN_FULLNAME) $(OBJS) $(LIBS)
26 install: $(PLUGIN_FULLNAME)
27 $(STRIP) $(PLUGIN_FULLNAME)
31 rm -f $(OBJS) $(SRCS:%.c=%.d) $(PLUGIN_FULLNAME)