xorg-xorgproto/attic/merge-makefile
Adam Jackson 866582439a Move the migration scripts and data to the attic
Signed-off-by: Adam Jackson <ajax@redhat.com>
2018-02-01 15:07:35 -05:00

19 lines
536 B
Bash

#!/bin/sh
for i in `cat protos`; do
sed -e "s/^pkgconfig/${i}pkgconfig/" \
-e "s/EXTRA_DIST/${i}_EXTRA_DIST/" \
-e 's/#.*$//' \
-e '/MAINTAINERCLEANFILES/d' \
-e '/PHONY/d' \
-e '/SUBDIRS=specs/d' \
-e '/ChangeLog/d' \
-e '/CHANGELOG/d' \
-e '/INSTALL/d' \
-e '/dist-hook/d' \
$i/Makefile.am
done | cat -s |
awk '/dist_doc_DATA/ { doc[ndoc++] = $3; }
{ print $0 }
END { print "SUBDIRS=specs"; print; print "dist_doc_DATA = \\"; for (i in doc) printf "\t%s \\\n", doc[i]; }'