2018-06-13 05:10:36 +02:00
|
|
|
# The default target of this Makefile is...
|
|
|
|
all::
|
|
|
|
|
2019-12-20 19:45:00 +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
|
2018-05-12 11:17:27 +02:00
|
|
|
./t-git-credential-netrc.sh
|
2013-02-25 16:49:15 +01:00
|
|
|
|
2019-12-20 19:45:00 +01:00
|
|
|
testverbose: build
|
2018-05-12 11:17:27 +02:00
|
|
|
./t-git-credential-netrc.sh -d -v
|
2019-12-20 19:45:00 +01:00
|
|
|
|
|
|
|
.PHONY: all build install clean test testverbose
|