# # This is a basic makefile that uses a flat directory structure. It could be # expanded to support multiple subdirectories and/or libraries # #.SILENT: all lib test steril clean tar dist link .DEFAULT TOPDIR=../../ ROOTDIR=false all: time_plugin include $(TOPDIR)/conf/Makefile.common DISTNAME=ignore LIBVERSION=0.1.2 LIBNAME=iwear_module_time LIB=$(LIBNAME).$(DYN_SUFFIX).$(LIBVERSION) time time_plugin: timeplugin.o @echo $(BLU)[LD]$(NOR) $(LIB) @$(CXX) $(LIBINCLUDE) -liwsens $(CXXLDFLAGS)$(LIB) timeplugin.o -o ./lib/$(LIB) @echo $(GRN)[LN -s]$(NOR) $(LIBNAME).$(DYN_SUFFIX) @ln -sf $(PWD)/time/lib/$(LIB) $(PREFIX)/lib/plugins/sensors/$(LIBNAME).$(DYN_SUFFIX)