94c8635d0f
The tests/accessibility, tests/micro-bench and the examples directory in the coobook create a lot of non-installed binaries. Since we know who they are, and we ignore them, we can auto-generate the ignore files as well. The rest of Clutter is covered by the main ignore file.
22 lines
537 B
Makefile
22 lines
537 B
Makefile
# this file should only be used in directories that generate test
|
|
# or example binaries through noinst_PROGRAMS; it is *not* a full
|
|
# generator of Git ignore files, and it's not meant to be used as
|
|
# the top-level Git ignore file generator.
|
|
|
|
$(srcdir)/.gitignore: Makefile.am
|
|
$(QUIET_GEN)( \
|
|
echo "*.o" ; \
|
|
echo ".gitignore" ; \
|
|
) > .gitignore ; \
|
|
for p in $(noinst_PROGRAMS); do \
|
|
echo "/$$p" >> .gitignore ; \
|
|
done
|
|
|
|
gitignore: $(srcdir)/.gitignore
|
|
|
|
.PHONY: gitignore
|
|
|
|
DISTCLEANFILES += $(srcdir)/.gitignore
|
|
|
|
all: gitignore
|