1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
SUBDIRS = include src test
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = bindings test/data
# Remove Perl build files if they exist
# Also remove test files, we don't need this at this point
dist-hook:
rm -rf $(distdir)/bindings/perl/Makefile.old \
$(distdir)/bindings/perl/Makefile \
$(distdir)/bindings/perl/Scan.o \
$(distdir)/bindings/perl/Scan.c \
$(distdir)/bindings/perl/*.bs \
$(distdir)/bindings/perl/*blib \
$(distdir)/bindings/perl/MANIFEST.SKIP
rm -rf $(distdir)/test/data
|