diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-06-05 22:24:57 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-06-05 22:24:57 +0000 |
commit | 5235fd119cfd97d3c7514eeef60cdea586f76b25 (patch) | |
tree | 98f44c9e48cd2c43b5c456067fdeecb8abf673d0 /doc/ru | |
parent | 0fbcc93e6c6a44bf15bd4c2b5f58a99cd6fe9312 (diff) | |
download | weechat-5235fd119cfd97d3c7514eeef60cdea586f76b25.zip |
Added Makefile.am for russian quickstart guide
Diffstat (limited to 'doc/ru')
-rw-r--r-- | doc/ru/Makefile.am | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/ru/Makefile.am b/doc/ru/Makefile.am new file mode 100644 index 000000000..a136d2de4 --- /dev/null +++ b/doc/ru/Makefile.am @@ -0,0 +1,28 @@ +# Copyright (c) 2003-2006 FlashCode <flashcode@flashtux.org> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# + +LANGCODE = ru +QUICKSTART = weechat_quickstart.$(LANGCODE).txt + +EXTRA_DIST = $(QUICKSTART) + +docdir = $(datadir)/doc/$(PACKAGE) + +# install docs + +install-data-hook: + $(INSTALL_DATA) $(QUICKSTART) $(DESTDIR)$(docdir)/ |