diff options
author | Bruno Haible <bruno@clisp.org> | 2003-04-01 00:54:46 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:19 +0200 |
commit | 6a570c60b014562bd473a22f061caad63ed8f561 (patch) | |
tree | f2baf658a17dd4127e044d74c139859186200607 /gettext-tools/doc/Makefile.vms | |
parent | 2784ad9f09ef6d0db9cc917ed984a5e13df7703f (diff) | |
download | external_gettext-6a570c60b014562bd473a22f061caad63ed8f561.zip external_gettext-6a570c60b014562bd473a22f061caad63ed8f561.tar.gz external_gettext-6a570c60b014562bd473a22f061caad63ed8f561.tar.bz2 |
Support for VMS.
Diffstat (limited to 'gettext-tools/doc/Makefile.vms')
-rw-r--r-- | gettext-tools/doc/Makefile.vms | 45 |
1 files changed, 45 insertions, 0 deletions
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 : |