if ENABLE_SHARED
if ENABLE_LTDL
if ENABLE_STATIC
-bin_PROGRAMS = dot dot_static vimdot
+bin_PROGRAMS = dot dot_static
else
noinst_PROGRAMS = dot_builtins
-bin_PROGRAMS = dot vimdot
+bin_PROGRAMS = dot
endif
else
if ENABLE_STATIC
endif
endif
-
-vimdot: $(top_srcdir)/cmd/dot/vimdot.sh
- cp $(top_srcdir)/cmd/dot/vimdot.sh vimdot
- chmod +x vimdot
-
man_MANS = dot.1
pdf_DATA = dot.1.pdf
dot_builtins_LDADD += $(top_builddir)/plugin/pango/libgvplugin_pango.la @PANGOCAIRO_LIBS@
endif
-EXTRA_DIST = Makefile.old dot.1 dot.1.pdf vimdot.sh
+EXTRA_DIST = Makefile.old dot.1 dot.1.pdf
-DISTCLEANFILES = dot.1.pdf vimdot
+DISTCLEANFILES = dot.1.pdf
+++ /dev/null
-#!/bin/sh
-
-# Written by: John Ellson <ellson@research.att.com>
-
-if test -z $1; then f=noname.dot; else f=$1; fi
-if ! test -f $f; then cat >$f <<EOF
-digraph noname {
- graph [layout=dot rankdir=LR]
-
-// This is just an example for you to use as a template.
-// Edit as you like. Whenever you save a legal graph,
-// the graph layout in dot's window will be updated.
-
- {vim dot} -> vimdot
-}
-EOF
-fi
-if ! test -w $f; then echo "warning: $f is not writable";fi
-
-# dot -Txlib watches the file $f for changes using inotify()
-dot -Txlib $f &
-# open an editor in the file (coudl be any editor)
-gvim $f &