mirror of https://github.com/GNOME/gimp.git
create help/C/toolbox/help/Makefile.
1999-12-19 Michael Natterer <mitch@gimp.org> * configure.in: create help/C/toolbox/help/Makefile.
This commit is contained in:
parent
8a30f3df8e
commit
4f0d8a0b57
|
@ -1,3 +1,7 @@
|
|||
1999-12-19 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* configure.in: create help/C/toolbox/help/Makefile.
|
||||
|
||||
1999-12-19 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/menus.c: move <Image>/Dialogs after <Image>/Tools and add a
|
||||
|
|
|
@ -781,6 +781,7 @@ help/C/open/Makefile
|
|||
help/C/paths/Makefile
|
||||
help/C/save/Makefile
|
||||
help/C/toolbox/Makefile
|
||||
help/C/toolbox/help/Makefile
|
||||
help/C/tools/Makefile
|
||||
help/images/Makefile],
|
||||
[
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
SUBDIRS = help
|
||||
|
||||
helpdatadir = $(gimpdatadir)/help/C/toolbox
|
||||
|
||||
helpdata_DATA = \
|
||||
|
@ -14,6 +16,12 @@ files:
|
|||
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
||||
echo $$p; \
|
||||
done
|
||||
@for subdir in $(SUBDIRS); do \
|
||||
files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
|
||||
for file in $$files; do \
|
||||
echo $$subdir/$$file; \
|
||||
done; \
|
||||
done
|
||||
|
||||
install-data-local:
|
||||
rm -f $(helpdatadir)/dialogs
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Makefile.in
|
||||
Makefile
|
|
@ -0,0 +1,22 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
helpdatadir = $(gimpdatadir)/help/C/toolbox/help
|
||||
|
||||
helpdata_DATA = \
|
||||
context_help.html \
|
||||
index.html
|
||||
|
||||
EXTRA_DIST = $(helpdata_DATA)
|
||||
|
||||
.PHONY: files install-data-local
|
||||
|
||||
files:
|
||||
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
||||
echo $$p; \
|
||||
done
|
||||
|
||||
install-data-local:
|
||||
rm -f $(helpdatadir)/dialogs
|
||||
ln -sf ../../dialogs $(helpdatadir)/dialogs
|
||||
rm -f $(helpdatadir)/filters
|
||||
ln -sf ../filters $(helpdatadir)/filters
|
|
@ -0,0 +1,31 @@
|
|||
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
||||
<html>
|
||||
<head>
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
|
||||
<title>Help Page for context_help</title>
|
||||
</head>
|
||||
|
||||
<body text="#000000" bgcolor="#FFFFFF" link="#0000FF"
|
||||
vlink="#FF0000" alink="#000088">
|
||||
|
||||
<table width="100%" cellspacing="1" cellpadding="1">
|
||||
<tr bgcolor="black">
|
||||
<td width="100%" align="center">
|
||||
<font size="+2" color="white">context_help help page</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor="white" >
|
||||
<td width="100%" align="left">
|
||||
<p>
|
||||
<a href="index.html">Index</a><p>
|
||||
(/toolbox/help/context_help.html)<p>
|
||||
Sorry but the help file for context_help is not yet done.
|
||||
<p>
|
||||
/Karin & Olof
|
||||
<p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,32 @@
|
|||
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
||||
<html>
|
||||
<head>
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
|
||||
<title>Index for help</title>
|
||||
</head>
|
||||
|
||||
<body text="#000000" bgcolor="#FFFFFF" link="#0000FF"
|
||||
vlink="#FF0000" alink="#000088">
|
||||
|
||||
<table width="100%" cellspacing="1" cellpadding="1">
|
||||
<tr bgcolor="black">
|
||||
<td width="100%" align="center">
|
||||
<font size="+2" color="white">help Index</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor="white" >
|
||||
<td width="100%" align="left">
|
||||
<p>
|
||||
(/toolbox/help/index.html)<p>
|
||||
<a href="../index.html">Top index</a><p>
|
||||
<p>Topics in this directory:<p>
|
||||
<a href="context_help.html">context_help</a><br>
|
||||
<p>
|
||||
/Karin & Olof
|
||||
<p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,3 +1,7 @@
|
|||
1999-12-19 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* C/toolbox/help/*: we forgot help for help ;-)
|
||||
|
||||
1999-12-19 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* C/filters/Makefile.am
|
||||
|
|
Loading…
Reference in New Issue