Lines Matching refs:gitignore
22 # This enables automatic .gitignore generation. If you need to ignore
24 # But think twice before doing that. If a file has to be in .gitignore,
33 # ignore them. See "man gitignore".
52 # - all: "make all" will build all gitignore files.
53 # - gitignore: makes all gitignore files in the current dir and subdirs.
54 # - .gitignore: make gitignore file for the current dir.
55 # - gitignore-recurse: makes all gitignore files in the subdirs.
143 # Actual .gitignore generation:
146 $(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk
224 .gitignore \
258 all: $(srcdir)/.gitignore gitignore-recurse-maybe
259 gitignore: $(srcdir)/.gitignore gitignore-recurse
261 gitignore-recurse-maybe:
265 *) test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) .gitignore gitignore-recurse-maybe || echo "Skipping $$subdir");; \
268 gitignore-recurse:
270 test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) .gitignore gitignore-recurse || echo "Skipping $$subdir"); \
273 maintainer-clean: gitignore-clean
274 gitignore-clean:
275 -rm -f $(srcdir)/.gitignore
277 .PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe