mutter/build/autotools/Makefile.am.gitignore
Emmanuele Bassi a67997ef39 build: Create .gitignore files in the current directory
We cannot touch srcdir when distchecking.
2015-04-23 21:23:50 +01:00

27 lines
673 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.
GIT_IGNORE_FILES = $(noinst_PROGRAMS) $(check_PROGRAMS) $(check_SCRIPTS) $(GIT_IGNORE_EXTRA)
.gitignore: Makefile.am
$(QUIET_GEN)( \
echo "*.o" ; \
echo ".gitignore" ; \
) > .gitignore ; \
for p in $(GIT_IGNORE_FILES); do \
echo "/$$p" >> .gitignore ; \
done
gitignore: .gitignore
gitignore-clean:
$(QUIET_RM)rm -f .gitignore
.PHONY: gitignore gitignore-clean
all-am: gitignore
maintainer-clean: gitignore-clean