Platon Technologies
not logged in Login Registration
EnglishSlovak
open source software development celebrating 10 years of open source development! Thursday, March 28, 2024

Diff for vimconfig/Makefile between version 1.5 and 1.6

version 1.5, 2002/02/05 15:45:02 version 1.6, 2002/02/05 22:41:53
Line 1 
Line 1 
 # Makefile for creating distribution of vim configfiles.  # Makefile for creating distribution of vim configfiles.
 # Type 'make dist' for create tar-gziped archiv.  # Type 'make dist' for create tar-gziped and zip archiv.
   
 #  #
 # (c) rajo <host8@kepler.fmph.uniba.sk  # (c) rajo <host8@kepler.fmph.uniba.sk
Line 9 
Line 9 
   
 PACKAGE = vimconfig  PACKAGE = vimconfig
 VERSION = 1.2  VERSION = 1.2
   PACKAGE_TEMPLATE_PLUGIN = templatefile
   VERSION_TEMPLATE_PLUGIN = 1.2
   
   DISTFILES_TEMPLATE_PLUGIN = vim \
                                                   vim/plugin \
                                                   vim/plugin/templatefile.vim \
                                                   vim/templates \
                                                   vim/templates/ \
                                                   vim/templates/skel.c \
                                                   vim/templates/skel.h \
                                                   vim/templates/skel.sh \
                                                   vim/templates/Makefile
   
 DISTFILES = Makefile vimrc vim \  DISTFILES = Makefile vimrc vim \
                         vim/strace.vim \                          vim/strace.vim \
                         vim/csyntax.vim \                          vim/csyntax.vim \
                         vim/skelet.c \  
                         vim/ftplugin \                          vim/ftplugin \
                         vim/ftplugin/mail.vim \                          vim/ftplugin/mail.vim \
                         vim/ftplugin/perl.vim \                          vim/ftplugin/perl.vim \
Line 21  DISTFILES = Makefile vimrc vim \
Line 32  DISTFILES = Makefile vimrc vim \
                         vim/plugin/ \                          vim/plugin/ \
                         vim/plugin/CmdlineCompl.vim \                          vim/plugin/CmdlineCompl.vim \
                         vim/plugin/calendar.vim \                          vim/plugin/calendar.vim \
                         vim/plugin/matchit.vim                          vim/plugin/matchit.vim $(DISTFILES_TEMPLATE_PLUGIN)
   
   
 #TAR = gtar  #TAR = gtar
Line 33  GZIP_ENV = --best
Line 44  GZIP_ENV = --best
   
 srcdir = .  srcdir = .
 distdir = $(PACKAGE)-$(VERSION)  distdir = $(PACKAGE)-$(VERSION)
   distdir_template_plugin = $(PACKAGE_TEMPLATE_PLUGIN)-$(VERSION_TEMPLATE_PLUGIN)
 top_distdir = $(distdir)  top_distdir = $(distdir)
 top_builddir = .  top_builddir = .
   
   #########
   # Targets
   
   all: dist dist-template-plugin
   
   clean: clean-dist clean-dist-template-plugin
   
   clean-dist:
           -rm -rf $(distdir)
           -rm -f $(distdir).tar.gz $(distdir).zip
   
   clean-dist-template-plugin:
           -rm -rf $(distdir_template_plugin)
           -rm -f $(distdir_template_plugin).tar.gz $(distdir_template_plugin).zip
   
   # Distribution of template plugin {{{
   dist-template-plugin: distdir_template_plugin
           GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir_template_plugin).tar.gz $(distdir_template_plugin)
           ZIP=$(ZIP_ENV) $(ZIP) $(distdir_template_plugin).zip $(distdir_template_plugin)
           -rm -rf $(distdir_template_plugin)
   
   dist-template-plugin-all: distdir_template_plugin
           GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir_template_plugin).tar.gz $(distdir_template_plugin)
           ZIP=$(ZIP_ENV) $(ZIP) $(distdir_template_plugin).zip $(distdir_template_plugin)
           -rm -rf $(distdir_template_plugin)
   
   distdir_template_plugin: $(DISTFILES_TEMPLATE_PLUGIN)
           -rm -rf $(distdir_template_plugin)
           mkdir $(distdir_template_plugin)
           here=`cd $(top_builddir) && pwd`; \
           top_distdir_template_plugin=`cd $(distdir_template_plugin) && pwd`; \
           distdir_template_plugin=`cd $(distdir_template_plugin) && pwd`;
           @for file in $(DISTFILES_TEMPLATE_PLUGIN); do \
             d=$(srcdir); \
             if test -d $$d/$$file; then \
               mkdir $(distdir_template_plugin)/$$file; \
             else \
               test -f $(distdir_template_plugin)/$$file \
               || ln $$d/$$file $(distdir_template_plugin)/$$file 2> /dev/null \
               || cp -p $$d/$$file $(distdir_template_plugin)/$$file || :; \
             fi; \
           done
   # }}} Distribution of template plugin
   
 dist: distdir  dist: distdir
         GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)          GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
         ZIP=$(ZIP_ENV) $(ZIP) $(distdir).zip $(distdir)          ZIP=$(ZIP_ENV) $(ZIP) $(distdir).zip $(distdir)
Line 64  distdir: $(DISTFILES)
Line 120  distdir: $(DISTFILES)
         done          done
   
   
   # Modeline {{{
   # vim:set ts=4:
   # vim600:fdm=marker fdl=0 fdc=3 vb t_vb=:
   # }}}

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

Platon Group <platon@platon.org> http://platon.org/
Copyright © 2002-2006 Platon Group
Site powered by Metafox CMS
Go to Top