Issue with test
If I build my package, everything goes well. However, if I want to recompile by doing make clean make Then if I go back to share/myPackage/examples, test is still compiled.
additionally, if I run make clean there and want to re-compile it, I get "make: *** No rule to make target 'test.cc', needed by 'test'. Stop."
This doesn't happen if I configure, make, make clean and make again on myPackage home directory and try to compile test for the first time.
So the issue is on the two Makefile. The make clean on myPackage/share/myPackage/examples removes test* instead of test and the make clean in myPackage/ does not remove test at all. I can fix it quickly if you want.