diff options
Diffstat (limited to 'gettext-tools/doc')
-rw-r--r-- | gettext-tools/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gettext-tools/doc/Makefile.am | 5 | ||||
-rw-r--r-- | gettext-tools/doc/Makefile.vms | 45 |
3 files changed, 55 insertions, 0 deletions
diff --git a/gettext-tools/doc/ChangeLog b/gettext-tools/doc/ChangeLog index 95c2213..f1b248b 100644 --- a/gettext-tools/doc/ChangeLog +++ b/gettext-tools/doc/ChangeLog @@ -1,3 +1,8 @@ +2003-03-30 Bruno Haible <bruno@clisp.org> + + * Makefile.vms: New file. + * Makefile.am (EXTRA_DIST): Add Makefile.vms. + 2003-03-17 Bruno Haible <bruno@clisp.org> Native Woe32/MSVC support. diff --git a/gettext-tools/doc/Makefile.am b/gettext-tools/doc/Makefile.am index 6ec7949..418a307 100644 --- a/gettext-tools/doc/Makefile.am +++ b/gettext-tools/doc/Makefile.am @@ -199,6 +199,11 @@ dist-html-split: done +# VMS support. + +EXTRA_DIST += Makefile.vms + + # Woe32 support. EXTRA_DIST += Makefile.msvc diff --git a/gettext-tools/doc/Makefile.vms b/gettext-tools/doc/Makefile.vms new file mode 100644 index 0000000..4c26731 --- /dev/null +++ b/gettext-tools/doc/Makefile.vms @@ -0,0 +1,45 @@ +# -*- Makefile -*- for gettext-tools/doc on VMS using the MMS utility + +#### Start of system configuration section. #### + +# Directories used by "make install": +prefix = SYS$DATA:[ +docdir = $(prefix).doc.gettext + +LN = copy +RM = delete + +# Programs used by "make install": +INSTALL = copy +INSTALL_PROGRAM = copy +INSTALL_DATA = copy + +#### End of system configuration section. #### + +all : + +install : all,force + create /directory $(prefix)] + create /directory $(prefix).doc] + create /directory $(docdir)] + $(INSTALL_DATA) gettext_*.html $(docdir) + +installdirs : force + create /directory $(prefix)] + create /directory $(prefix).doc] + create /directory $(docdir)] + +uninstall : force + $(RM) $(docdir)]gettext_*.html + +check : all + +mostlyclean : clean + +clean : force + +distclean : clean + +maintainer-clean : distclean + +force : |