Code

http-push: push <remote> :<branch> deletes remote branch
[git.git] / perl / Makefile
1 #
2 # Makefile for perl support modules and routine
3 #
4 makfile:=perl.mak
6 PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
7 prefix_SQ = $(subst ','\'',$(prefix))
9 ifndef V
10         QUIET = @
11 endif
13 all install instlibdir: $(makfile)
14         $(QUIET)$(MAKE) -f $(makfile) $@
16 clean:
17         $(QUIET)test -f $(makfile) && $(MAKE) -f $(makfile) $@ || exit 0
18         $(RM) ppport.h
19         $(RM) $(makfile)
20         $(RM) $(makfile).old
22 ifdef NO_PERL_MAKEMAKER
23 instdir_SQ = $(subst ','\'',$(prefix)/lib)
24 $(makfile): ../GIT-CFLAGS Makefile
25         echo all: > $@
26         echo '  :' >> $@
27         echo install: >> $@
28         echo '  mkdir -p $(instdir_SQ)' >> $@
29         echo '  $(RM) $(instdir_SQ)/Git.pm; cp Git.pm $(instdir_SQ)' >> $@
30         echo '  $(RM) $(instdir_SQ)/Error.pm; \
31         cp private-Error.pm $(instdir_SQ)/Error.pm' >> $@
32         echo instlibdir: >> $@
33         echo '  echo $(instdir_SQ)' >> $@
34 else
35 $(makfile): Makefile.PL ../GIT-CFLAGS
36         $(PERL_PATH) $< PREFIX='$(prefix_SQ)'
37 endif
39 # this is just added comfort for calling make directly in perl dir
40 # (even though GIT-CFLAGS aren't used yet. If ever)
41 ../GIT-CFLAGS:
42         $(MAKE) -C .. GIT-CFLAGS