# Makefile default : component ## to make the shared library with wrapper for a component component : cd src; make ; cd .. static_lib : cd src ; make -f Makefile.static ; cd .. clean: cd src ; make clean ; make -f Makefile.static clean ; cd .. distclean : clean cd ccaComponent ; rm -f *.cca ; cd .. install : cd src ; make install ; cd .. uninstall : cd src ; make uninstall ; cd ..