Develop and Download Open Source Software

Browse CVS Repository

Contents of /freewnn/FreeWnn/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.8 - (show annotations) (download)
Thu Jun 14 17:55:28 2001 UTC (22 years, 10 months ago) by ura
Branch: MAIN
CVS Tags: freewnn-1-1-1-a016, freewnn-1-1-1-a017, freewnn-1-1-1-a014, freewnn-1-1-1-a015
Changes since 1.7: +17 -10 lines
FreeWnn-1.1.1-a014 is released.

1 #
2 # $Id: Makefile.in $
3 #
4
5 #
6 # FreeWnn is a network-extensible Kana-to-Kanji conversion system.
7 # This file is part of FreeWnn.
8 #
9 # Copyright Kyoto University Research Institute for Mathematical Sciences
10 # 1987, 1988, 1989, 1990, 1991, 1992
11 # Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
12 # Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992
13 # Copyright FreeWnn Project 1999, 2000
14 #
15 # Maintainer: FreeWnn Project <freewnn@tomo.gr.jp>
16 #
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
21 #
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 # GNU General Public License for more details.
26 #
27 # You should have received a copy of the GNU General Public License
28 # along with this program; if not, write to the Free Software
29 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 #
31
32 include @top_srcdir@/makerule.mk
33
34 WNNDIR = Wnn
35
36 CWNNDIR = cWnn
37
38 KWNNDIR = kWnn
39
40 SUBDIRS= PubdicPlus $(WNNDIR) Contrib/dic/gerodic $(CWNNDIR) $(KWNNDIR)
41
42 World::
43 @echo ""
44 @echo "Building Input Method."
45 @echo ""
46 @date
47 @echo ""
48 -$(RM) Makefile.bak; $(MV) Makefile Makefile.bak
49 $(MAKE) $(MFLAGS) -f Makefile.bak Makefile
50 $(MAKE) $(MFLAGS) Makefiles
51 $(MAKE) $(MFLAGS) clean
52 $(MAKE) $(MFLAGS) includes
53 $(MAKE) $(MFLAGS) depend
54 $(MAKE) $(MFLAGS) $(WORLDOPTS)
55 @echo ""
56 @date
57 @echo ""
58 @echo "Full build of Input Method."
59 @echo ""
60
61 Everything::
62 @echo ""
63 @echo "Rebuilding Input Method."
64 @echo ""
65 @date
66 @echo ""
67 -$(RM) Makefile.bak; $(MV) Makefile Makefile.bak
68 $(MAKE) $(MFLAGS) -f Makefile.bak Makefile
69 $(MAKE) $(MFLAGS) Makefiles
70 $(MAKE) $(MFLAGS) includes
71 $(MAKE) $(MFLAGS) depend
72 $(MAKE) $(MFLAGS) $(WORLDOPTS)
73 @echo ""
74 @date
75 @echo ""
76 @echo "Rebuild of Input Method."
77 @echo ""
78
79 # ----------------------------------------------------------------------
80 # common rules for all Makefiles - do not edit
81
82 emptyrule::
83
84 clean::
85 $(RM) *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a .emacs_* tags TAGS make.log MakeOut *.core "#"*
86
87
88 tags::
89 $(TAGS) -w *.[ch]
90 $(TAGS) -xw *.[ch] > TAGS
91
92 man_keywords::
93
94 # ----------------------------------------------------------------------
95 # rules for building in SUBDIRS - do not edit
96
97 install::
98 @for flag in ${MAKEFLAGS} ''; do \
99 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
100 for i in $(SUBDIRS) ;\
101 do \
102 echo "installing" "in $(CURRENT_DIR)/$$i..."; \
103 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
104 DESTDIR=$(DESTDIR) install); \
105 done
106
107 install.man::
108 @for flag in ${MAKEFLAGS} ''; do \
109 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
110 for i in $(SUBDIRS) ;\
111 do \
112 echo "installing man pages" "in $(CURRENT_DIR)/$$i..."; \
113 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
114 DESTDIR=$(DESTDIR) install.man); \
115 done
116
117 install.linkkit::
118 @for flag in ${MAKEFLAGS} ''; do \
119 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
120 for i in $(SUBDIRS) ;\
121 do \
122 echo "installing link kit" "in $(CURRENT_DIR)/$$i..."; \
123 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
124 DESTDIR='$(DESTDIR)' install.linkkit); \
125 done
126
127 clean::
128 @for flag in ${MAKEFLAGS} ''; do \
129 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
130 for i in $(SUBDIRS) ;\
131 do \
132 echo "cleaning" "in $(CURRENT_DIR)/$$i..."; \
133 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
134 clean); \
135 done
136
137 tags::
138 @for flag in ${MAKEFLAGS} ''; do \
139 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
140 for i in $(SUBDIRS) ;\
141 do \
142 echo "tagging" "in $(CURRENT_DIR)/$$i..."; \
143 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
144 TAGS='$(TAGS)' tags); \
145 done
146
147 includes::
148 @for flag in ${MAKEFLAGS} ''; do \
149 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
150 for i in $(SUBDIRS) ;\
151 do \
152 echo including "in $(CURRENT_DIR)/$$i..."; \
153 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
154 includes); \
155 done
156
157 # ----------------------------------------------------------------------
158 # dependencies generated by makedepend
159
160 # dependencies are in .depend
161

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26