From: tomo Date: Fri, 11 Dec 2009 03:24:51 +0000 (+0000) Subject: (all): Call `build-bdf' and `build-truetype'. X-Git-Tag: chise-fonts-installer-0_1~27 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=5cf78a492dc302cb2966ae4ef4a9929d93252c70;p=chise%2Fchise-fonts-installer.git (all): Call `build-bdf' and `build-truetype'. (install): Call `install-bdf' and `install-truetype'. (build-bdf): New target. (install-bdf): New target. (build-truetype): New target. (install-truetype): New target. (distclean): Run `make distclean' in BDF and TrueType. --- diff --git a/Makefile.in b/Makefile.in index 8b67479..e8d3f1e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -11,9 +11,9 @@ LIBDIR = @libdir@ OPTS = @ac_configure_args@ -all: build-intlfonts build-gt +all: build-intlfonts build-bdf build-truetype build-gt -install: install-intlfonts install-gt +install: install-intlfonts install-bdf install-truetype install-gt build-intlfonts: intlfonts-1.2.1/config.log @@ -30,6 +30,20 @@ install-intlfonts: cd intlfonts-1.2.1 && make install +build-bdf: + cd BDF && make all + +install-bdf: + cd BDF && make install + + +build-truetype: + cd TrueType && make all + +install-truetype: + cd TrueType && make install + + build-gt: cd GT && make all @@ -38,6 +52,8 @@ install-gt: distclean: + cd BDF && make distclean + cd TrueType && make distclean + cd GT && make 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