diff options
-rw-r--r-- | common/pdexternal.am | 3 | ||||
-rw-r--r-- | hello/Makefile.am | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/common/pdexternal.am b/common/pdexternal.am index af27060..0c6b9c8 100644 --- a/common/pdexternal.am +++ b/common/pdexternal.am @@ -19,7 +19,7 @@ ##----------------------------------------------------------------------- ## Additional suffixes -PDEXT = @PDEXT@ +DEXT = @PDEXT@ EXEEXT = .@PDEXT@ ## --- pseudo-deps for '.SUFFIXES' @@ -30,6 +30,7 @@ SUFFIXES = .@PDEXT@ .pod .txt .html ##--- extra distribution files EXTRA_DIST = \ + $(PODS) \ $(PODS:.pod=.txt) \ $(pddoc_DATA) \ $(pdext_DATA) \ diff --git a/hello/Makefile.am b/hello/Makefile.am index 484fe0c..46b4286 100644 --- a/hello/Makefile.am +++ b/hello/Makefile.am @@ -60,4 +60,5 @@ all-local: $(PODS:.pod=.txt) #----------------------------------------------------------------------- ## --- extra distribution files -#EXTRA_DIST += $(PODS:.pod=.txt) +#EXTRA_DIST += $(PODS) $(PODS:.pod=.txt) ##-- included by default +EXTRA_DIST += $(PODS:.pod=.html) |