~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-security

« back to all changes in this revision

Viewing changes to t/Makefile

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-10-04 08:27:01 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20071004082701-rsd058ontoqz4i30
Tags: 1:1.5.3.4-1
new upstream point release (closes: #445188).

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#GIT_TEST_OPTS=--verbose --debug
7
7
SHELL_PATH ?= $(SHELL)
8
8
TAR ?= $(TAR)
 
9
RM ?= rm -f
9
10
 
10
11
# Shell quote;
11
12
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
19
20
        @echo "*** $@ ***"; GIT_CONFIG=.git/config '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
20
21
 
21
22
clean:
22
 
        rm -fr trash
 
23
        $(RM) -r trash
23
24
 
24
25
# we can test NO_OPTIMIZE_COMMITS independently of LC_ALL
25
26
full-svn-test:
28
29
 
29
30
.PHONY: $(T) clean
30
31
.NOTPARALLEL:
31