# 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 battery steril clean tar dist link .DEFAULT TOPDIR=../.. ROOTDIR=false all: batterydaemon_daemon include $(TOPDIR)/conf/Makefile.common DISTNAME=ignore LIBVERSION=0.0.1 LIBNAME=iwear_daemon_batterydaemon LIB=$(LIBNAME).$(DYN_SUFFIX).$(LIBVERSION) batterydaemon batterydaemon_daemon: batterydaemon.o @echo $(BLU)[LD]$(NOR) $(LIB) @$(CXX) $(LIBINCLUDE) -liwear_uiservices $(LIBLDFLAGS) batterydaemon.o -o ./lib/$(LIB) @echo $(GRN)[LN -s]$(NOR) $(LIBNAME).$(DYN_SUFFIX) @ln -sf $(PWD)/batterydaemon/lib/$(LIB) $(PREFIX)/lib/plugins/daemons/$(LIBNAME).$(DYN_SUFFIX)