X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=Makefile.in;h=1ed94ee25fcda9f0d62c4a4372b3880e1b7e9cad;hb=20430f84367a54d575f8b41245050cd10567f61b;hp=8b67479bd25e238b41193453cdff0b031f9e6ddb;hpb=7f4fb9235b3c126be767317c1a5c8f314812a297;p=chise%2Fchise-fonts-installer.git diff --git a/Makefile.in b/Makefile.in index 8b67479..1ed94ee 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,14 +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-gt: - cd GT && make install +install-truetype: + cd TrueType && make install + + +install-scripts: + -$(MKDIR) $(SCRIPTS_DIR) + install -c chise-setup-xfonts $(SCRIPTS_DIR) distclean: - -$(RM) Makefile config.status config.log - -$(RM) -r autom4te.cache/ intlfonts-1.2.1/ intlfonts-1.2.1.tar.gz - cd GT && make 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/ + + +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/ + + +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)