Index: trunk/doc/conf/Makefile =================================================================== --- trunk/doc/conf/Makefile (revision 14878) +++ trunk/doc/conf/Makefile (revision 14879) @@ -19,4 +19,9 @@ uninstall: $(MAKE) install_all HOW="install -u" +clean: + +distclean: + + include $(ROOT)/Makefile.conf Index: trunk/doc/developer/Makefile =================================================================== --- trunk/doc/developer/Makefile (nonexistent) +++ trunk/doc/developer/Makefile (revision 14879) @@ -0,0 +1,28 @@ +ROOT=../.. +DEVDIR=$(DOCDIR)/developer + +all: + +install_all: + $(SCCBOX) mkdir -p $(DEVDIR)/alien_formats $(DEVDIR)/ddrc $(DEVDIR)/hid_gtk3 $(DEVDIR)/hid_remote $(DEVDIR)/mods3 + $(SCCBOX) $(HOW) alien_formats/*.txt $(DEVDIR)/alien_formats/ + $(SCCBOX) $(HOW) ddrc/*.txt $(DEVDIR)/ddrc/ + $(SCCBOX) $(HOW) hid_gtk3/*.html hid_gtk3/*.png $(DEVDIR)/hid_gtk3/ + $(SCCBOX) $(HOW) hid_remote/*.html hid_remote/*.png hid_remote/*.svg $(DEVDIR)/hid_remote/ + $(SCCBOX) $(HOW) mods3/*.html mods3/*.png $(DEVDIR)/mods3/ + +install: + $(MAKE) install_all HOW="install -f -d" + +linstall: + $(MAKE) install_all HOW="install -f -l -d" + +uninstall: + $(MAKE) install_all HOW="install -u" + +clean: + +distclean: + + +include $(ROOT)/Makefile.conf Index: trunk/doc/security/Makefile =================================================================== --- trunk/doc/security/Makefile (revision 14878) +++ trunk/doc/security/Makefile (revision 14879) @@ -18,4 +18,9 @@ uninstall: $(MAKE) install_all HOW="install -u" +clean: + +distclean: + + include $(ROOT)/Makefile.conf Index: trunk/doc/tutorials/Makefile =================================================================== --- trunk/doc/tutorials/Makefile (revision 14878) +++ trunk/doc/tutorials/Makefile (revision 14879) @@ -12,3 +12,7 @@ uninstall: $(MAKE) all_ CMD=uninstall + +clean: + +distclean: Index: trunk/doc/user/Makefile =================================================================== --- trunk/doc/user/Makefile (revision 14878) +++ trunk/doc/user/Makefile (revision 14879) @@ -31,7 +31,7 @@ make install_all HOW="install -f" linstall: - make install_all HOW="install -f -l" + make install_all HOW="install -f -l --absolute " uninstall: make install_all HOW="install -u"