mutter/build/autotools/Makefile.am.gitignore
Emmanuele Bassi 94c8635d0f build: Autogenerate more ignore files
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.
2010-08-14 08:43:16 +01:00

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