From 6aa922394742026d6d09db4a91083698d31d2e28 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Sun, 14 Dec 2014 13:28:53 +0900 Subject: [PATCH] (all): Call `build-mj'. (install): Call `install-mj'. (build-mj): New target. (install-mj): New target. (distclean): Run `make distclean' in MJ/. (distclean-all): Run `make distclean-all' in MJ/. --- BDF/Makefile.in | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/BDF/Makefile.in b/BDF/Makefile.in index a7b10d0..d57ad9f 100644 --- a/BDF/Makefile.in +++ b/BDF/Makefile.in @@ -12,11 +12,11 @@ OPTS = @ac_configure_args@ all: build-jisx0213 build-egb build-etl-vn2 \ - build-thai-xtis build-zinbun build-hanazono build-cbeta + build-thai-xtis build-zinbun build-hanazono build-mj build-cbeta install: install-jisx0213 install-egb install-etl-vn2 \ install-thai-xtis install-zinbun install-hanazono \ - install-cbeta + install-mj install-cbeta build-jisx0213: @@ -61,6 +61,13 @@ install-hanazono: cd Hanazono && make install +build-mj: + cd MJ && make + +install-mj: + cd MJ && make install + + build-cbeta: cd CBETA && make @@ -75,6 +82,7 @@ distclean: cd Thai-XTIS && make distclean cd Zinbun && make distclean cd Hanazono && make distclean + cd MJ && make distclean cd CBETA && make distclean -$(RM) Makefile @@ -85,5 +93,6 @@ distclean-all: cd Thai-XTIS && make distclean-all cd Zinbun && make distclean-all cd Hanazono && make distclean-all + cd MJ && make distclean-all cd CBETA && make distclean-all -$(RM) Makefile -- 1.7.10.4