diff options
author | eb | 2008-03-05 15:40:44 +0000 |
---|---|---|
committer | eb | 2008-03-05 15:40:44 +0000 |
commit | 4f2f87e7b2fa3e6bd21726040ec01be521b258b3 (patch) | |
tree | fc6a03234b3eb00164737d3192844685f91c6e3a /pmt | |
parent | 787c17cfed1d89d6219a2dd36029d3da8025c726 (diff) | |
download | gnuradio-4f2f87e7b2fa3e6bd21726040ec01be521b258b3.tar.gz gnuradio-4f2f87e7b2fa3e6bd21726040ec01be521b258b3.tar.bz2 gnuradio-4f2f87e7b2fa3e6bd21726040ec01be521b258b3.zip |
Merged eb/reverted-7899 -r7928:7930 into trunk. This effectively
reverts changeset 7899 and fixes some distcheck problems. We're now
back to the old behavior, where you must "make" before "make distcheck".
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7931 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'pmt')
-rw-r--r-- | pmt/src/lib/Makefile.am | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/pmt/src/lib/Makefile.am b/pmt/src/lib/Makefile.am index 16834746d..d615836e8 100644 --- a/pmt/src/lib/Makefile.am +++ b/pmt/src/lib/Makefile.am @@ -47,9 +47,11 @@ GENERATED_CC = \ -# Ensure parallel does the right thing. +# Ensure parallel make does the right thing. # http://sources.redhat.com/automake/automake.html#Multiple-Outputs +STAMPS = generate-stamp + generate-stamp: $(CODE_GENERATOR) @rm -f generate-tmp @touch generate-tmp @@ -83,7 +85,9 @@ BUILT_SOURCES = $(GENERATED_H) $(GENERATED_CC) pmt_serial_tags.h # ---------------------------------------------------------------- EXTRA_DIST = \ - $(CODE_GENERATOR) + $(CODE_GENERATOR) \ + $(STAMPS) + # These are the source files that go into the pmt shared library libpmt_la_SOURCES = \ @@ -140,4 +144,4 @@ test_pmt_SOURCES = test_pmt.cc test_pmt_LDADD = $(LIBPMTQA) -CLEANFILES = $(BUILT_SOURCES) *.pyc +CLEANFILES = $(BUILT_SOURCES) $(STAMPS) *.pyc |