Platon Technologies
not logged in Login Registration
EnglishSlovak
open source software development celebrating 10 years of open source development! Tuesday, April 16, 2024

File: [Platon] / vimconfig / Makefile (download)

Revision 1.5, Tue Feb 5 15:45:02 2002 UTC (22 years, 2 months ago) by host8


Changes since 1.4: +8 -3 lines

Version in Makefile changed to 1.2
Files in vim/plugin directory added to the distribution.
*.zip *.tar.gz files added to .cvsignore.

# Makefile for creating distribution of vim configfiles.
# Type 'make dist' for create tar-gziped archiv. 

#
# (c) rajo <host8@kepler.fmph.uniba.sk
#

# $Id: Makefile,v 1.5 2002/02/05 15:45:02 host8 Exp $

PACKAGE = vimconfig
VERSION = 1.2

DISTFILES = Makefile vimrc vim \
            vim/strace.vim \
            vim/csyntax.vim \
            vim/skelet.c \
            vim/ftplugin \
            vim/ftplugin/mail.vim \
            vim/ftplugin/perl.vim \
            vim/ftplugin/tex.vim \
            vim/plugin/ \
            vim/plugin/CmdlineCompl.vim \
            vim/plugin/calendar.vim \
            vim/plugin/matchit.vim


#TAR = gtar
TAR = tar
ZIP = zip
ZIP_ENV = -r9
GZIP_ENV = --best


srcdir = .
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
top_builddir = .

dist: distdir
    GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
    ZIP=$(ZIP_ENV) $(ZIP) $(distdir).zip $(distdir)
    -rm -rf $(distdir)

dist-all: distdir
    GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
    ZIP=$(ZIP_ENV) $(ZIP) $(distdir).zip $(distdir)
    -rm -rf $(distdir)

distdir: $(DISTFILES)
    -rm -rf $(distdir)
    mkdir $(distdir)
    here=`cd $(top_builddir) && pwd`; \
    top_distdir=`cd $(distdir) && pwd`; \
    distdir=`cd $(distdir) && pwd`;
    @for file in $(DISTFILES); do \
      d=$(srcdir); \
      if test -d $$d/$$file; then \
        mkdir $(distdir)/$$file; \
      else \
        test -f $(distdir)/$$file \
        || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
        || cp -p $$d/$$file $(distdir)/$$file || :; \
      fi; \
    done



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