]> granicus.if.org Git - graphviz/commitdiff
Prefer `dist_` prefix over `EXTRA_DIST`
authorDavid Seifert <soap@gentoo.org>
Thu, 14 Apr 2022 08:23:49 +0000 (10:23 +0200)
committerDavid Seifert <soap@gentoo.org>
Thu, 14 Apr 2022 08:23:49 +0000 (10:23 +0200)
* `dist_` expresses the clear intent for files to be distributed along in the tarball:
  https://www.gnu.org/software/automake/manual/html_node/Program-and-Library-Variables.html

doc/info/Makefile.am
doc/schema/Makefile.am
tclpkg/gdtclft/demo/Makefile.am
tclpkg/tclpathplan/demo/pathplan_data/Makefile.am

index 1a20c21e57064322696e0662bd47869cc9e47c10..cd7a1c017938e31ed146c689c46f84954716e05c 100644 (file)
@@ -1,8 +1,5 @@
 ## Process this file with automake to produce Makefile.in
 
 htmldir = $(pkgdatadir)/doc/html/info
-
-html_DATA = attrs.html colors.html command.html \
+dist_html_DATA = attrs.html colors.html command.html \
        index.html lang.html output.html shapes.html arrows.html
-
-EXTRA_DIST = $(html_DATA)
index 48c68759867a9f0e05129535f479991779de1055..42b979e3b9c212cc77821807697e8d37d5a2471b 100644 (file)
@@ -1,7 +1,4 @@
 ## Process this file with automake to produce Makefile.in
 
 schemadir = $(pkgdatadir)/doc/html/schema
-
-schema_DATA = arguments.xml attributes.xml attributes.xslt
-
-EXTRA_DIST = $(schema_DATA)
+dist_schema_DATA = arguments.xml attributes.xml attributes.xslt
index c4efa0ececd02b7cd6c11c14f32172300468afa9..9bd8c6885e2b67048d3edba84cd404388360cbf0 100644 (file)
@@ -3,8 +3,6 @@
 demodir = $(datadir)/$(PACKAGE)/demo
 
 if WITH_TCL
-demo_SCRIPTS = entities.tcl
-demo_DATA = entities.tcl.README entities.html
+dist_demo_SCRIPTS = entities.tcl
+dist_demo_DATA = entities.tcl.README entities.html
 endif
-
-EXTRA_DIST = entities.tcl entities.tcl.README entities.html
index 82e60176a73e5fb1b0903c5abba57202fed3d468..179f2182bfe0c14f91ed4cc716ef6b21c6d6b12e 100644 (file)
@@ -1,12 +1,8 @@
 ## Process this file with automake to produce Makefile.in
 
-EXAMPLES = boxes.dat dpd.dat funny.dat maze.dat nested.dat northo.dat \
-       obs.dat other.dat paths.dat rotor.dat u.dat unknown.dat
-
 pathplanexampledir = $(datadir)/$(PACKAGE)/demo/pathplan_data
 
 if WITH_TCL
-pathplanexample_DATA = $(EXAMPLES)
+dist_pathplanexample_DATA = boxes.dat dpd.dat funny.dat maze.dat nested.dat northo.dat \
+       obs.dat other.dat paths.dat rotor.dat u.dat unknown.dat
 endif
-
-EXTRA_DIST = $(EXAMPLES)