# # 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: testapplication_application include $(TOPDIR)/conf/Makefile.common DISTNAME=ignore LIBVERSION=0.0.1 LIBNAME=iwear_application_testapplication LIB=$(LIBNAME).$(DYN_SUFFIX).$(LIBVERSION) testapplication testapplication_application: testapplication.o @echo $(BLU)[LD]$(NOR) $(LIB) @$(CXX) $(LIBINCLUDE) -liwear_uiservices $(LIBLDFLAGS) testapplication.o -o ./lib/$(LIB) @echo $(GRN)[LN -s]$(NOR) $(LIBNAME).$(DYN_SUFFIX) @ln -sf $(PWD)/testapplication/lib/$(LIB) $(PREFIX)/lib/plugins/applications/$(LIBNAME).$(DYN_SUFFIX)