Code

i18n: add infrastructure for translating Git with gettext
[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))
8 localedir_SQ = $(subst ','\'',$(localedir))
10 ifndef V
11         QUIET = @
12 endif
14 all install instlibdir: $(makfile)
15         $(QUIET)$(MAKE) -f $(makfile) $@
17 clean:
18         $(QUIET)test -f $(makfile) && $(MAKE) -f $(makfile) $@ || exit 0
19         $(RM) ppport.h
20         $(RM) $(makfile)
21         $(RM) $(makfile).old
23 ifdef NO_PERL_MAKEMAKER
24 instdir_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)' >> $@
40 else
41 $(makfile): Makefile.PL ../GIT-CFLAGS
42         $(PERL_PATH) $< PREFIX='$(prefix_SQ)' INSTALL_BASE='' --localedir='$(localedir_SQ)'
43 endif
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