include MakeIncl.CFRFS_Ports TARGET_DIR_PORTS = $(PORTS_INSTALL_DIR)/include/CFRFS_Ports/ TARGET_DIR_DOCS = $(PORTS_INSTALL_DIR)/share/CFRFS_Ports/docs default : make docs docs : if test -z $(DOXYGEN) ; then echo " Need doxygen to make docs. Skipping" ; \ else $(DOXYGEN) Doxygen.ports ; fi install : if test ! -d $(TARGET_DIR_PORTS) ; then \ mkdir -p $(TARGET_DIR_PORTS) ; fi cp *.h $(TARGET_DIR_PORTS)/ if test ! -d $(TARGET_DIR_DOCS) && test -d Documentation/html/ ; then \ mkdir -p $(TARGET_DIR_DOCS) ; fi if test -d Documentation/html/ ; then \ cp Documentation/html/* $(TARGET_DIR_DOCS)/ ; \ fi uninstall : if test -d $(TARGET_DIR_PORTS) ; then /bin/rm -rf $(TRAGET_DIR_PORTS) ; fi if test -d $(TARGET_DIR_DOCS) ; then /bin/rm -rf $(TRAGET_DIR_DOCS) ; fi clean : /bin/rm -f *~ /bin/rm -fr Documentation