build and install docs
svn path=/trunk/; revision=3345
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2000-06-01 Dan Winship <danw@helixcode.com>
|
||||
|
||||
* configure.in (AC_OUTPUT): add doc, doc/C
|
||||
|
||||
* Makefile.am (SUBDIRS): add doc
|
||||
|
||||
2000-05-31 Federico Mena Quintero <federico@helixcode.com>
|
||||
|
||||
* widgets/misc/e-scroll-frame.[ch]: Imported GtkScrollFrame from
|
||||
|
||||
@ -30,7 +30,8 @@ SUBDIRS = \
|
||||
art \
|
||||
default_user \
|
||||
tools \
|
||||
po
|
||||
po \
|
||||
doc
|
||||
|
||||
dist-hook: evolution.spec
|
||||
cp evolution.spec $(distdir)
|
||||
|
||||
@ -483,4 +483,6 @@ default_user/local/Inbox/Makefile
|
||||
default_user/local/Outbox/Makefile
|
||||
default_user/local/Trash/Makefile
|
||||
tools/Makefile
|
||||
doc/Makefile
|
||||
doc/C/Makefile
|
||||
])
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
Makefile
|
||||
|
||||
Makefile.in
|
||||
|
||||
2
doc/C/.cvsignore
Normal file
2
doc/C/.cvsignore
Normal file
@ -0,0 +1,2 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
54
doc/C/Makefile.am
Normal file
54
doc/C/Makefile.am
Normal file
@ -0,0 +1,54 @@
|
||||
evolution_helpdir = $(datadir)/gnome/help/evolution/C
|
||||
|
||||
SGML_FILES = \
|
||||
apx-authors.sgml \
|
||||
apx-bugs.sgml \
|
||||
apx-fdl.sgml \
|
||||
apx-gloss.sgml \
|
||||
config-prefs.sgml \
|
||||
config-setupassist.sgml \
|
||||
config-sync.sgml \
|
||||
devel-action.sgml \
|
||||
devel-component.sgml \
|
||||
devel-script.sgml \
|
||||
evolution-guide.sgml \
|
||||
preface.sgml \
|
||||
usage-calendar.sgml \
|
||||
usage-contact.sgml \
|
||||
usage-mail.sgml \
|
||||
usage-mainwindow.sgml \
|
||||
usage-sync.sgml
|
||||
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(SGML_FILES)
|
||||
|
||||
all: evolution-guide
|
||||
|
||||
evolution-guide: $(SGML_FILES)
|
||||
-db2html evolution-guide.sgml
|
||||
|
||||
dist-hook:
|
||||
mkdir $(distdir)/evolution-guide
|
||||
-cp evolution-guide/*.html evolution-guide/*.css \
|
||||
$(distdir)/evolution-guide
|
||||
mkdir $(distdir)/fig
|
||||
-cp fig/*.png $(distdir)/fig
|
||||
|
||||
install-data-local: evolution-guide
|
||||
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)/fig
|
||||
-for file in $(srcdir)/evolution-guide/*.html $(srcdir)/evolution-guide/*.css; do \
|
||||
basefile=`basename $$file`; \
|
||||
$(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/$$basefile; \
|
||||
done
|
||||
-for file in $(srcdir)/fig/*.png; do \
|
||||
basefile=`basename $$file`; \
|
||||
$(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/fig/$$basefile; \
|
||||
done
|
||||
|
||||
evolution.ps: evolution.sgml
|
||||
-db2ps $<
|
||||
|
||||
evolution.rtf: evolution.sgml
|
||||
-db2rtf $<
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
2000-06-01 Dan Winship <danw@helixcode.com>
|
||||
|
||||
* Makefile.am: recurse into the C directory
|
||||
|
||||
* C/Makefile.am: Rules to build and install the docs. Mostly
|
||||
stolen from gnomecal. Only works if you have GDP stuff
|
||||
(http://www.gnome.org/gdp/) set up on your machine, but won't make
|
||||
the build fail if you don't.
|
||||
|
||||
2000-05-29 Aaron Weber <aaron@helixcode.com>
|
||||
|
||||
* C/usage-contact.sgml: incorporated kevins notes.
|
||||
|
||||
1
doc/Makefile.am
Normal file
1
doc/Makefile.am
Normal file
@ -0,0 +1 @@
|
||||
SUBDIRS = C
|
||||
@ -1,2 +1,2 @@
|
||||
Makefile
|
||||
|
||||
Makefile.in
|
||||
|
||||
2
help/C/.cvsignore
Normal file
2
help/C/.cvsignore
Normal file
@ -0,0 +1,2 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
54
help/C/Makefile.am
Normal file
54
help/C/Makefile.am
Normal file
@ -0,0 +1,54 @@
|
||||
evolution_helpdir = $(datadir)/gnome/help/evolution/C
|
||||
|
||||
SGML_FILES = \
|
||||
apx-authors.sgml \
|
||||
apx-bugs.sgml \
|
||||
apx-fdl.sgml \
|
||||
apx-gloss.sgml \
|
||||
config-prefs.sgml \
|
||||
config-setupassist.sgml \
|
||||
config-sync.sgml \
|
||||
devel-action.sgml \
|
||||
devel-component.sgml \
|
||||
devel-script.sgml \
|
||||
evolution-guide.sgml \
|
||||
preface.sgml \
|
||||
usage-calendar.sgml \
|
||||
usage-contact.sgml \
|
||||
usage-mail.sgml \
|
||||
usage-mainwindow.sgml \
|
||||
usage-sync.sgml
|
||||
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(SGML_FILES)
|
||||
|
||||
all: evolution-guide
|
||||
|
||||
evolution-guide: $(SGML_FILES)
|
||||
-db2html evolution-guide.sgml
|
||||
|
||||
dist-hook:
|
||||
mkdir $(distdir)/evolution-guide
|
||||
-cp evolution-guide/*.html evolution-guide/*.css \
|
||||
$(distdir)/evolution-guide
|
||||
mkdir $(distdir)/fig
|
||||
-cp fig/*.png $(distdir)/fig
|
||||
|
||||
install-data-local: evolution-guide
|
||||
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)/fig
|
||||
-for file in $(srcdir)/evolution-guide/*.html $(srcdir)/evolution-guide/*.css; do \
|
||||
basefile=`basename $$file`; \
|
||||
$(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/$$basefile; \
|
||||
done
|
||||
-for file in $(srcdir)/fig/*.png; do \
|
||||
basefile=`basename $$file`; \
|
||||
$(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/fig/$$basefile; \
|
||||
done
|
||||
|
||||
evolution.ps: evolution.sgml
|
||||
-db2ps $<
|
||||
|
||||
evolution.rtf: evolution.sgml
|
||||
-db2rtf $<
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
2000-06-01 Dan Winship <danw@helixcode.com>
|
||||
|
||||
* Makefile.am: recurse into the C directory
|
||||
|
||||
* C/Makefile.am: Rules to build and install the docs. Mostly
|
||||
stolen from gnomecal. Only works if you have GDP stuff
|
||||
(http://www.gnome.org/gdp/) set up on your machine, but won't make
|
||||
the build fail if you don't.
|
||||
|
||||
2000-05-29 Aaron Weber <aaron@helixcode.com>
|
||||
|
||||
* C/usage-contact.sgml: incorporated kevins notes.
|
||||
|
||||
1
help/Makefile.am
Normal file
1
help/Makefile.am
Normal file
@ -0,0 +1 @@
|
||||
SUBDIRS = C
|
||||
Reference in New Issue
Block a user