2020-01-12 00:36:56 +01:00
|
|
|
# The default target of this Makefile is...
|
|
|
|
all::
|
|
|
|
|
2020-11-21 19:20:35 +01:00
|
|
|
SCRIPT_PERL = git-credential-netrc.perl
|
|
|
|
GIT_ROOT_DIR = ../../..
|
|
|
|
HERE = contrib/credential/netrc
|
|
|
|
|
|
|
|
SCRIPT_PERL_FULL = $(patsubst %,$(HERE)/%,$(SCRIPT_PERL))
|
|
|
|
|
|
|
|
all:: build
|
|
|
|
|
|
|
|
build:
|
|
|
|
$(MAKE) -C $(GIT_ROOT_DIR) SCRIPT_PERL="$(SCRIPT_PERL_FULL)" \
|
|
|
|
build-perl-script
|
|
|
|
|
|
|
|
install: build
|
|
|
|
$(MAKE) -C $(GIT_ROOT_DIR) SCRIPT_PERL="$(SCRIPT_PERL_FULL)" \
|
|
|
|
install-perl-script
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(MAKE) -C $(GIT_ROOT_DIR) SCRIPT_PERL="$(SCRIPT_PERL_FULL)" \
|
|
|
|
clean-perl-script
|
|
|
|
|
|
|
|
test: build
|
2020-01-12 00:36:56 +01:00
|
|
|
./t-git-credential-netrc.sh
|
|
|
|
|
2020-11-21 19:20:35 +01:00
|
|
|
testverbose: build
|
2020-01-12 00:36:56 +01:00
|
|
|
./t-git-credential-netrc.sh -d -v
|
2020-11-21 19:20:35 +01:00
|
|
|
|
|
|
|
.PHONY: all build install clean test testverbose
|