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.13 - (show annotations) (download)
Sun May 12 22:51:15 2002 UTC (21 years, 11 months ago) by hiroo
Branch: MAIN
Changes since 1.12: +2 -1 lines
* Include stdlib.h for malloc() family.
  If not STDC_HEADERS include malloc.h if it exists.
* Include some system headers where it lacks.
* Wnn/uum/setutmp.c: correct the parameter of setenv().

1 #
2 # $Id: Makefile.in,v 1.12 2002/03/09 16:50:31 aono Exp $
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, 2001, 2002
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 ./makerule.mk
33 top_builddir = .
34
35 WNNDIR = @Wnn@
36
37 CWNNDIR = @cWnn@
38
39 KWNNDIR = @kWnn@
40
41 LIB_SUBDIRS =
42 SEVER_SUBDIRS =
43
44 # PubdicPlus��Contrib/dic/gerodic��SERVER_SUBDIRS������������������������
45 # SUBDIRS������������������������Wnn/pubdicplus��make������������������
46 # ����
47 # JSERVER_SUBDIRS1 = PubdicPlus
48 JSERVER_SUBDIRS2 = Contrib/dic/gerodic
49
50 SUBDIRS= $(WNNDIR) @JSERVER_SUBDIRS2@ $(CWNNDIR) $(KWNNDIR) @SUBDIRS@
51
52 LIBTOOL_DEPS = @LIBTOOL_DEPS@
53 libtool: $(LIBTOOL_DEPS)
54 $(SHELL) ./config.status --recheck
55
56 World::
57 @echo ""
58 @echo "Building Input Method."
59 @echo ""
60 @date
61 @echo ""
62 -$(RM) Makefile.bak; $(MV) Makefile Makefile.bak
63 $(MAKE) $(MFLAGS) -f Makefile.bak Makefile
64 $(MAKE) $(MFLAGS) Makefiles
65 $(MAKE) $(MFLAGS) clean
66 $(MAKE) $(MFLAGS) includes
67 $(MAKE) $(MFLAGS) depend
68 $(MAKE) $(MFLAGS) $(WORLDOPTS)
69 @echo ""
70 @date
71 @echo ""
72 @echo "Full build of Input Method."
73 @echo ""
74
75 Everything::
76 @echo ""
77 @echo "Rebuilding Input Method."
78 @echo ""
79 @date
80 @echo ""
81 -$(RM) Makefile.bak; $(MV) Makefile Makefile.bak
82 $(MAKE) $(MFLAGS) -f Makefile.bak Makefile
83 $(MAKE) $(MFLAGS) Makefiles
84 $(MAKE) $(MFLAGS) includes
85 $(MAKE) $(MFLAGS) depend
86 $(MAKE) $(MFLAGS) $(WORLDOPTS)
87 @echo ""
88 @date
89 @echo ""
90 @echo "Rebuild of Input Method."
91 @echo ""
92
93 distclean::
94 $(MAKE) clean
95 rm -f makerule.mk config.h config.status config.cache config.log
96 rm -f configure.lineno autom4te.cache
97 rm -f libtool
98 find . -name Makefile -exec rm -f {} \;
99
100 # ----------------------------------------------------------------------
101 # common rules for all Makefiles - do not edit
102
103 emptyrule::
104
105 clean::
106 $(RM) *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a .emacs_* tags TAGS make.log MakeOut *.core "#"*
107
108
109 tags::
110 $(TAGS) -w *.[ch]
111 $(TAGS) -xw *.[ch] > TAGS
112
113 man_keywords::
114
115 # ----------------------------------------------------------------------
116 # rules for building in SUBDIRS - do not edit
117
118 install::
119 @for flag in ${MAKEFLAGS} ''; do \
120 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
121 for i in $(SUBDIRS) ;\
122 do \
123 echo "installing" "in $(CURRENT_DIR)/$$i..."; \
124 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
125 DESTDIR=$(DESTDIR) install); \
126 done
127
128 install.man::
129 @for flag in ${MAKEFLAGS} ''; do \
130 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
131 for i in $(SUBDIRS) ;\
132 do \
133 echo "installing man pages" "in $(CURRENT_DIR)/$$i..."; \
134 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
135 DESTDIR=$(DESTDIR) install.man); \
136 done
137
138 install.linkkit::
139 @for flag in ${MAKEFLAGS} ''; do \
140 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
141 for i in $(SUBDIRS) ;\
142 do \
143 echo "installing link kit" "in $(CURRENT_DIR)/$$i..."; \
144 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
145 DESTDIR='$(DESTDIR)' install.linkkit); \
146 done
147
148 clean::
149 @for flag in ${MAKEFLAGS} ''; do \
150 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
151 for i in $(SUBDIRS) ;\
152 do \
153 echo "cleaning" "in $(CURRENT_DIR)/$$i..."; \
154 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
155 clean); \
156 done
157
158 tags::
159 @for flag in ${MAKEFLAGS} ''; do \
160 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
161 for i in $(SUBDIRS) ;\
162 do \
163 echo "tagging" "in $(CURRENT_DIR)/$$i..."; \
164 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
165 TAGS='$(TAGS)' tags); \
166 done
167
168 includes::
169 @for flag in ${MAKEFLAGS} ''; do \
170 case "$$flag" in *=*) ;; *[ik]*) set +e;; esac; done; \
171 for i in $(SUBDIRS) ;\
172 do \
173 echo including "in $(CURRENT_DIR)/$$i..."; \
174 (cd $$i && $(MAKE) $(MFLAGS) $(PARALLELMFLAGS) \
175 includes); \
176 done
177
178 # ----------------------------------------------------------------------
179 # dependencies generated by makedepend
180
181 # dependencies are in .depend
182

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