]> www.fi.muni.cz Git - evince.git/commitdiff
don't distribute generated marshallers
authorMartin Kretzschmar <mkretzschmar@src.gnome.org>
Mon, 19 May 2003 17:49:35 +0000 (17:49 +0000)
committerMartin Kretzschmar <mkretzschmar@src.gnome.org>
Mon, 19 May 2003 17:49:35 +0000 (17:49 +0000)
pdf/xpdf/Makefile.am

index f9d2330a6f3ca209c79b8e380282a669d5beb414..a8c3a23d1dc0481954bff274f2988300a4dbccef 100644 (file)
@@ -16,7 +16,7 @@ else
 gui = xpdf
 endif
 
-BUILT_SOURCES =                        \
+marshal_sources =                      \
        gpdf-marshal.c                  \
        gpdf-marshal.h  
 
@@ -151,7 +151,7 @@ gnome_pdf_viewer_SOURCES =          \
        pdf-info-dict-util.h            \
        pdf-properties-display.c        \
        pdf-properties-display.h        \
-       $(BUILT_SOURCES)
+       $(marshal_sources)
 
 
 # Old files
@@ -280,3 +280,11 @@ EXTRA_DIST = $(stock_DATA)         \
        config.h                        \
        $(ui_DATA)                      \
        $(glade_DATA)
+
+DONT_DIST_SOURCE = $(marshal_sources)
+
+dist-hook:
+       for file in $(DONT_DIST_SOURCE) ; do \
+           rm -f $(distdir)/$$file ; \
+       done
+