~ chicken-core (chicken-5) 664fc2e61caaec82d429d3dac3f1e82f66e643a6
commit 664fc2e61caaec82d429d3dac3f1e82f66e643a6 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Fri Dec 10 15:18:13 2010 +0100 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Fri Dec 10 15:18:13 2010 +0100 added index-page for html manual diff --git a/index.html b/index.html new file mode 100644 index 00000000..7386af71 --- /dev/null +++ b/index.html @@ -0,0 +1,11 @@ +<html> + <body> + <center> + <img src="chicken.png"> + <p><a href="The User's Manual.html">Contents</a> + <p>For more information and latest news, visit + <a href="http://wiki.call-cc.org/">the CHICKEN wiki</a> + <blink> <-- CHECK IT OUT! </blink> + </center> + </body> +</html> diff --git a/rules.make b/rules.make index c8562dde..7533e600 100644 --- a/rules.make +++ b/rules.make @@ -289,7 +289,7 @@ $(eval $(call declare-program-from-object,$(CHICKEN_BUG_PROGRAM)$(EXE),chicken-b # installation .PHONY: install uninstall install-libs -.PHONY: install-target install-dev install-bin install-other-files +.PHONY: install-target install-dev install-bin install-other-files install-wrappers install: $(TARGETS) install-target install-bin install-libs install-dev install-other-files @@ -424,6 +424,10 @@ install-other-files: $(INSTALL_PROGRAM) $(INSTALL_PROGRAM_FILE_OPTIONS) $(SRCDIR)setup.defaults "$(DESTDIR)$(IDATADIR)" $(INSTALL_PROGRAM) $(INSTALL_PROGRAM_FILE_OPTIONS) $(SRCDIR)chicken.png "$(DESTDIR)$(IDATADIR)" +install-wrappers: + $(foreach prg, $(INSTALLED_PROGRAMS), \ + $(CSI) -s $(SRCDIR)scripts$(SEP)make-wrapper.scm $(prg) "$(IBINDIR)" + uninstall: $(foreach prog,$(INSTALLED_PROGRAMS),\ $(REMOVE_COMMAND) $(REMOVE_COMMAND_OPTIONS)\ @@ -574,6 +578,8 @@ dist: distfiles html html: $(MAKEDIR_COMMAND) $(MAKEDIR_COMMAND_OPTIONS) $(SRCDIR)manual-html manual-labor $(SRCDIR)manual $(SRCDIR)manual-html + $(COPY_COMMAND) $(SRCDIR)chicken.png manual-html + $(COPY_COMMAND) $(SRCDIR)index.html manual-html # cleaning upTrap