X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=Makefile.in;h=099ace876140e2631b304317c3f527097d178b23;hb=5c3b6c38b75609c8cc35597d72ff6a47a6b05aa8;hp=ea989bfa9a072da4905efcb686cce3d8e219e096;hpb=35db309f4190f21fe2d8ee6ab0272a8f43c5dff5;p=chise%2Fchise-fonts-installer.git diff --git a/Makefile.in b/Makefile.in index ea989bf..099ace8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,19 +1,27 @@ +PACKAGE = @PACKAGE_NAME@ VERSION = @PACKAGE_VERSION@ TAR = tar WGET = wget +MKDIR = mkdir -p SUDO = prefix = @prefix@ exec_prefix = @exec_prefix@ + +datadir = @datadir@ + BINDIR = @bindir@ LIBDIR = @libdir@ +SCRIPTS_DIR = $(datadir)/scripts + OPTS = @ac_configure_args@ -all: build-intlfonts build-gt +all: build-intlfonts build-bdf build-truetype -install: install-intlfonts install-gt +install: all \ + install-intlfonts install-bdf install-truetype install-scripts build-intlfonts: intlfonts-1.2.1/config.log @@ -30,8 +38,47 @@ install-intlfonts: cd intlfonts-1.2.1 && make install -build-gt: - cd GT && make all +build-bdf: + cd BDF && make all + +install-bdf: + cd BDF && make install + + +build-truetype: + cd TrueType && make all + +install-truetype: + cd TrueType && make install + + +install-scripts: + -$(MKDIR) $(SCRIPTS_DIR) + install -c chise-setup-xfonts $(SCRIPTS_DIR) + + +distclean: + cd BDF && make distclean + cd TrueType && make distclean + -$(RM) Makefile config.status config.log chise-setup-xfonts + -$(RM) -r autom4te.cache/ intlfonts-1.2.1/ GT/ + + +distclean-all: + cd BDF && make distclean-all + cd TrueType && make distclean-all + -$(RM) intlfonts-1.2.1.tar.gz + -$(RM) Makefile config.status config.log chise-setup-xfonts + -$(RM) -r autom4te.cache/ intlfonts-1.2.1/ + -install-gt: - cd GT && make install +tar: + cvs commit + sh -c 'cvs tag -R $(PACKAGE)-`echo $(VERSION) | tr . _`; \ + cd /tmp; \ + cvs -d :pserver:anonymous@cvs.m17n.org:/cvs/chise \ + export -d $(PACKAGE)-$(VERSION) \ + -r $(PACKAGE)-`echo $(VERSION) | tr . _` \ + $(PACKAGE)' + cd /tmp; $(TAR) cvzf $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION) + cd /tmp; $(RM) -r $(PACKAGE)-$(VERSION)