From: ellson Date: Sun, 18 Nov 2007 02:25:45 +0000 (+0000) Subject: Make dot_builtins as a noinst_PROGRAM so that it can be used from in teh build tree... X-Git-Tag: LAST_LIBGRAPH~32^2~5009 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e060e3dfd690e753ecbfa8241bba49dcc3d6785;p=graphviz Make dot_builtins as a noinst_PROGRAM so that it can be used from in teh build tree for regression testing. --- diff --git a/cmd/dot/Makefile.am b/cmd/dot/Makefile.am index d5abe0165..0395b611f 100644 --- a/cmd/dot/Makefile.am +++ b/cmd/dot/Makefile.am @@ -19,13 +19,15 @@ if ENABLE_LTDL if ENABLE_STATIC bin_PROGRAMS = dot dot_static else +noinst_PROGRAMS = dot_builtins bin_PROGRAMS = dot endif else if ENABLE_STATIC -bin_PROGRAMS = dot_builtins dot_static +noinst_PROGRAMS = dot_builtins +bin_PROGRAMS = dot_static else -bin_PROGRAMS = dot_builtins +noinst_PROGRAMS = dot_builtins endif endif else