Home | History | Annotate | Download | only in harfbuzz_ng

Lines Matching refs:git

0 # git.mk, a small Makefile to autogenerate .gitignore files
13 GIT_MK_URL = https://raw.githubusercontent.com/behdad/git.mk/master/git.mk
16 # https://github.com/behdad/git.mk
18 # To use in your project, import this file in your git repo's toplevel,
19 # then do "make -f git.mk". This modifies all Makefile.am files in
20 # your project to -include git.mk. Remember to add that line to new
22 # "make -f git.mk".
38 # by this script (that is, if "git status" shows untracked files still), send
39 # me the output of "git status" as well as your Makefile.am and Makefile for
43 # Makefile.am.sample in the git.mk git repo.
45 # Don't EXTRA_DIST this file. It is supposed to only live in git clones,
62 # - Recursive configure doesn't work as $(top_srcdir)/git.mk inside the
64 # subdirs, add a proxy git.mk file in those dirs that simply does:
65 # "include $(top_srcdir)/../git.mk". Add more ..'s to your taste.
66 # And add those files to git. See vte/gnome-pty-helper/git.mk for
130 git-all: git-mk-install
132 git-mk-install:
133 @echo "Installing git makefile"
136 if grep 'include .*/git.mk' $$x >/dev/null; then \
137 echo "$$x already includes git.mk"; \
143 echo '-include $$(top_srcdir)/git.mk'; \
154 git-mk-update:
155 wget $(GIT_MK_URL) -O $(top_srcdir)/git.mk
157 .PHONY: git-all git-mk-install git-mk-update
165 $(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk
166 @echo "git.mk: Generating $@"
335 *) test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir");; \
340 test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir"); \