perl / Makefileon commit Merge branch 'cb/maint-t5541-make-server-port-portable' (030a360)
   1#
   2# Makefile for perl support modules and routine
   3#
   4makfile:=perl.mak
   5
   6PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
   7prefix_SQ = $(subst ','\'',$(prefix))
   8localedir_SQ = $(subst ','\'',$(localedir))
   9
  10ifndef V
  11        QUIET = @
  12endif
  13
  14all install instlibdir: $(makfile)
  15        $(QUIET)$(MAKE) -f $(makfile) $@
  16
  17clean:
  18        $(QUIET)test -f $(makfile) && $(MAKE) -f $(makfile) $@ || exit 0
  19        $(RM) ppport.h
  20        $(RM) $(makfile)
  21        $(RM) $(makfile).old
  22
  23ifdef NO_PERL_MAKEMAKER
  24instdir_SQ = $(subst ','\'',$(prefix)/lib)
  25$(makfile): ../GIT-CFLAGS Makefile
  26        echo all: private-Error.pm Git.pm > $@
  27        echo '  mkdir -p blib/lib' >> $@
  28        echo '  $(RM) blib/lib/Git.pm; cp Git.pm blib/lib/' >> $@
  29        echo '  $(RM) blib/lib/Error.pm' >> $@
  30        '$(PERL_PATH_SQ)' -MError -e 'exit($$Error::VERSION < 0.15009)' || \
  31        echo '  cp private-Error.pm blib/lib/Error.pm' >> $@
  32        echo install: >> $@
  33        echo '  mkdir -p "$$(DESTDIR)$(instdir_SQ)"' >> $@
  34        echo '  $(RM) "$$(DESTDIR)$(instdir_SQ)/Git.pm"; cp Git.pm "$$(DESTDIR)$(instdir_SQ)"' >> $@
  35        echo '  $(RM) "$$(DESTDIR)$(instdir_SQ)/Error.pm"' >> $@
  36        '$(PERL_PATH_SQ)' -MError -e 'exit($$Error::VERSION < 0.15009)' || \
  37        echo '  cp private-Error.pm "$$(DESTDIR)$(instdir_SQ)/Error.pm"' >> $@
  38        echo instlibdir: >> $@
  39        echo '  echo $(instdir_SQ)' >> $@
  40else
  41$(makfile): Makefile.PL ../GIT-CFLAGS
  42        $(PERL_PATH) $< PREFIX='$(prefix_SQ)' INSTALL_BASE='' --localedir='$(localedir_SQ)'
  43endif
  44
  45# this is just added comfort for calling make directly in perl dir
  46# (even though GIT-CFLAGS aren't used yet. If ever)
  47../GIT-CFLAGS:
  48        $(MAKE) -C .. GIT-CFLAGS