# # 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: temperature_plugin include $(TOPDIR)/conf/Makefile.common DISTNAME=ignore LIBVERSION=0.1.2 LIBNAME=iwear_module_temperature LIB=$(LIBNAME).$(DYN_SUFFIX).$(LIBVERSION) temperature temperature_plugin: temperatureplugin.o @echo $(BLU)[LD]$(NOR) $(LIB) @$(CXX) $(LIBINCLUDE) -liwsens -liwear-ser_sensor $(CPPLDFLAGS)$(LIB) temperatureplugin.o -o ./lib/$(LIB) @echo $(GRN)[LN -s]$(NOR) $(LIBNAME).$(DYN_SUFFIX) @ln -sf $(PWD)/temperature/lib/$(LIB) $(PREFIX)/lib/plugins/sensors/$(LIBNAME).$(DYN_SUFFIX)