summaryrefslogtreecommitdiff
path: root/examples/rpcalc/local.mk
diff options
context:
space:
mode:
authorAkim Demaille <demaille@gostai.com>2012-02-24 12:10:07 +0100
committerAkim Demaille <demaille@gostai.com>2012-02-24 13:32:17 +0100
commit59fba180a5b8c7135445bfbada5e96266a3286e8 (patch)
tree807c172621f42ec6b63f7962f0524d3b5dff900e /examples/rpcalc/local.mk
parent2191bb749b8f63b6037ca7e590ae499d0bb26db9 (diff)
downloadbison-59fba180a5b8c7135445bfbada5e96266a3286e8.tar.gz
build: fix more example extraction issues.
* Makefile.am (dist_TESTS): New. (TESTS, EXTRA_DIST): Run and ship them. * examples/calc++/local.mk: examples/calc++/calc++.stamp no longer exists, don't try to ship it. (.yy.stamp): New recipe. Use it. * examples/calc++/local.mk, examples/mfcalc/local.mk, * examples/rpcalc/local.mk: Don't ship the sources. Adjust the CPPFLAGS: there is nothing left in srcdir. (MAINTAINERCLEANFILES): Remove, now we are in builddir. (TESTS): Rename as... (dist_TESTS): this.
Diffstat (limited to 'examples/rpcalc/local.mk')
-rw-r--r--examples/rpcalc/local.mk8
1 files changed, 3 insertions, 5 deletions
diff --git a/examples/rpcalc/local.mk b/examples/rpcalc/local.mk
index 844ffdff..4351dc5a 100644
--- a/examples/rpcalc/local.mk
+++ b/examples/rpcalc/local.mk
@@ -20,7 +20,6 @@
## -------------------- ##
BUILT_SOURCES += $(rpcalc_sources)
-MAINTAINERCLEANFILES += $(rpcalc_sources)
rpcalc_extracted = \
examples/rpcalc/rpcalc.y
@@ -30,9 +29,8 @@ extracted += $(rpcalc_extracted)
check_PROGRAMS += examples/rpcalc/rpcalc
examples_rpcalc_rpcalc_LDADD = -lm
-examples_rpcalc_rpcalc_SOURCES = \
+nodist_examples_rpcalc_rpcalc_SOURCES = \
$(rpcalc_sources)
-examples_rpcalc_rpcalc_CPPFLAGS = -I$(top_srcdir)/examples/rpcalc
-TESTS += examples/rpcalc/rpcalc.test
-EXTRA_DIST += examples/rpcalc/rpcalc.test
+examples_rpcalc_rpcalc_CPPFLAGS = -I$(top_builddir)/examples/rpcalc
+dist_TESTS += examples/rpcalc/rpcalc.test