]> git.saurik.com Git - wxWidgets.git/blame - src/Makefile.in
Unicodified list of color strings.
[wxWidgets.git] / src / Makefile.in
CommitLineData
c801d85f 1#
a1a2adef 2# wxWindows/Unix main source makefile
c801d85f
KB
3#
4# Copyright 1998, Markus Holzhem and Robert Roebling
5#
6
a1a2adef 7# wxWindows base directory
c801d85f
KB
8WXBASEDIR=@WXBASEDIR@
9
10# set the OS type for compilation
11OS=@OS@
12
13# compile a library only
14RULE=gslib
15
ac57418f 16# define source file for odbc
84b46c35
GL
17IODBC_C_SRC=\
18 iodbc/catalog.c \
19 iodbc/connect.c \
20 iodbc/dlf.c \
21 iodbc/dlproc.c \
22 iodbc/execute.c \
23 iodbc/fetch.c \
24 iodbc/hdbc.c \
25 iodbc/henv.c \
26 iodbc/herr.c \
27 iodbc/hstmt.c \
28 iodbc/info.c \
29 iodbc/itrace.c \
84b46c35
GL
30 iodbc/misc.c \
31 iodbc/prepare.c \
32 iodbc/result.c
c801d85f 33
ac57418f
RR
34# define source file for png
35PNG_C_SRC=\
36 png/png.c \
37 png/pngset.c \
38 png/pngget.c \
39 png/pngrutil.c \
40 png/pngtrans.c \
41 png/pngwutil.c \
42 png/pngread.c \
43 png/pngrio.c \
44 png/pngwio.c \
45 png/pngwrite.c \
46 png/pngrtran.c \
47 png/pngwtran.c \
48 png/pngmem.c \
49 png/pngerror.c \
50 png/pngpread.c
51
52# define source file for zlib
53Z_C_SRC=\
54 zlib/adler32.c \
55 zlib/compress.c \
56 zlib/crc32.c \
57 zlib/gzio.c \
58 zlib/uncompr.c \
59 zlib/deflate.c \
60 zlib/trees.c \
61 zlib/zutil.c \
62 zlib/inflate.c \
63 zlib/infblock.c \
64 zlib/inftrees.c \
65 zlib/infcodes.c \
66 zlib/infutil.c \
67 zlib/inffast.c
68
a1a2adef
RR
69# include gtk.inc, qt.inc or motif.inc here
70include @MAKEINCLUDE@
c801d85f 71
f3cb6592
RR
72# determine library names
73STATIC_LIBRARY=lib$(LIB_TARGET).a
74SHARED_LIBRARY=lib$(LIB_TARGET).so.$(LIB_MAJOR).$(LIB_MINOR)
75
f3855ef0
RR
76LIB_CPP_ALL_SRC=$(LIB_CPP_SRC) @UNIX_THREAD@
77# @GTK_JOYSTICK@
c801d85f 78
ac57418f 79LIB_C_ALL_SRC=$(LIB_C_SRC) @IODBC_C_SRC@ @PNG_C_SRC@ @Z_C_SRC@ parser.c
6de97a3b 80
c801d85f
KB
81#define library objects
82LIB_OBJ=\
a1a2adef 83 $(LIB_CPP_ALL_SRC:.cpp=.o) \
6de97a3b 84 $(LIB_C_ALL_SRC:.c=.o)
c801d85f
KB
85
86all::
6de97a3b
RR
87 @if test ! -d gtk; then mkdir gtk; fi
88 @if test ! -d qt; then mkdir qt; fi
89 @if test ! -d motif; then mkdir motif; fi
892dbe99 90 @if test ! -d motif/xmcombo; then mkdir motif/xmcombo; fi
6de97a3b 91 @if test ! -d common; then mkdir common; fi
29545b1d 92 @if test ! -d unix; then mkdir unix; fi
6de97a3b
RR
93 @if test ! -d generic; then mkdir generic; fi
94 @if test ! -d png; then mkdir png; fi
95 @if test ! -d zlib; then mkdir zlib; fi
6de97a3b 96 @if test ! -d iodbc; then mkdir iodbc; fi
c801d85f 97
c98f0421 98install::
f3cb6592 99 @echo " "
c98f0421 100 @echo "Installing library files and headers.."
f3cb6592 101 @echo " "
c98f0421
RR
102 @echo " Creating directories.."
103 @$(WXBASEDIR)/mkinstalldirs \
d8c83875
RR
104 $(includedir)/wx \
105 $(includedir)/wx/gtk \
8c739649 106 $(includedir)/wx/motif \
034be888 107 $(includedir)/wx/unix \
d8c83875
RR
108 $(includedir)/wx/generic \
109 $(includedir)/wx/protocol \
cb43b372 110 $(libdir)/wx/include/wx/gtk \
d8c83875
RR
111 $(libdir) \
112 $(bindir)
c98f0421
RR
113 @echo " Copying headers from /include/wx"
114 @cd $(WXBASEDIR)/include/wx ; \
a665764c 115 $(INSTALL) -d $(includedir)/wx ; \
c98f0421 116 for f in *.h ; do \
f3cb6592
RR
117 rm -f $(includedir)/wx/$$f ; \
118 $(INSTALL_DATA) $$f $(includedir)/wx/$$f ; \
f04371f0
RR
119 done ; \
120 for f in *.cpp ; do \
121 rm -f $(includedir)/wx/$$f ; \
122 $(INSTALL_DATA) $$f $(includedir)/wx/$$f ; \
c98f0421 123 done
8c739649
RR
124 @if test "@TOOLKIT@" = "GTK" ; then \
125 echo " Copying headers from /include/wx/gtk" ; \
126 cd $(WXBASEDIR)/include/wx/gtk ; \
127 $(INSTALL) -d $(includedir)/wx/gtk ; \
128 for f in *.h ; do \
129 rm -f $(includedir)/wx/gtk/$$f ; \
130 $(INSTALL_DATA) $$f $(includedir)/wx/gtk/$$f ; \
131 done ; \
132 fi
133 @if test "@TOOLKIT@" = "MOTIF" ; then \
134 echo " Copying headers from /include/wx/motif" ; \
135 cd $(WXBASEDIR)/include/wx/motif ; \
136 $(INSTALL) -d $(includedir)/wx/motif ; \
137 for f in *.h ; do \
138 rm -f $(includedir)/wx/motif/$$f ; \
139 $(INSTALL_DATA) $$f $(includedir)/wx/motif/$$f ; \
140 done ; \
141 fi
c98f0421
RR
142 @echo " Copying headers from /include/wx/generic"
143 @cd $(WXBASEDIR)/include/wx/generic ; \
a665764c 144 $(INSTALL) -d $(includedir)/wx/generic ; \
c98f0421 145 for f in *.h ; do \
f3cb6592
RR
146 rm -f $(includedir)/wx/generic/$$f ; \
147 $(INSTALL_DATA) $$f $(includedir)/wx/generic/$$f ; \
c98f0421 148 done
c058d771
RR
149 @echo " Copying headers from /include/wx/protocol"
150 @cd $(WXBASEDIR)/include/wx/protocol ; \
151 for f in *.h ; do \
152 rm -f $(includedir)/wx/protocol/$$f ; \
153 $(INSTALL_DATA) $$f $(includedir)/wx/protocol/$$f ; \
154 done
034be888
RR
155 @echo " Copying headers from /include/wx/unix"
156 @cd $(WXBASEDIR)/include/wx/unix ; \
157 for f in *.h ; do \
158 rm -f $(includedir)/wx/unix/$$f ; \
159 $(INSTALL_DATA) $$f $(includedir)/wx/unix/$$f ; \
160 done
cb43b372 161 @echo " Moving setup.h to library path"
8c739649
RR
162 @if test "@TOOLKIT@" = "GTK" ; then \
163 cd $(WXBASEDIR)/src ; \
164 $(INSTALL) -d $(libdir)/wx/include/wx/gtk ; \
165 mv $(includedir)/wx/gtk/setup.h $(libdir)/wx/include/wx/gtk/setup.h ; \
166 fi
8c739649
RR
167 @if test "@TOOLKIT@" = "MOTIF" ; then \
168 cd $(WXBASEDIR)/src ; \
169 $(INSTALL) -d $(libdir)/wx/include/wx/motif ; \
170 mv $(includedir)/wx/motif/setup.h $(libdir)/wx/include/wx/motif/setup.h ; \
171 fi
f3cb6592 172 @echo " Copying wx-config"
e52f60e6
RR
173 @cd $(WXBASEDIR)/src ; \
174 $(INSTALL) -d $(bindir) ; \
f3cb6592 175 rm -f $(bindir)/wx-config ; \
e52f60e6 176 $(INSTALL_PROGRAM) $(WXBASEDIR)/wx-config $(bindir)/wx-config
f3cb6592 177 @echo " Copying static library"
e52f60e6 178 @cd $(WXBASEDIR)/src ; \
f3cb6592 179 rm -f $(libdir)/$(STATIC_LIBRARY) ; \
e52f60e6 180 $(INSTALL_DATA) $(WXBASEDIR)/lib/$(OS)/$(STATIC_LIBRARY) $(libdir)/$(STATIC_LIBRARY)
8fdca65c 181 @if test -f $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) ; then \
cb43b372 182 echo " Copying shared library" ; \
cb43b372 183 rm -f $(libdir)/lib$(LIB_TARGET).so* ; \
e52f60e6 184 $(INSTALL_PROGRAM) $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) $(libdir)/$(SHARED_LIBRARY) ; \
034be888 185 $(STRIP) $(libdir)/$(SHARED_LIBRARY) ; \
d8c83875
RR
186 $(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so.$(LIB_MAJOR) ; \
187 $(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so ; \
cb43b372
RR
188 echo " " ; \
189 echo " You may have to run ldconfig!" ; \
190 echo " " ; \
d8c83875 191 fi
f3cb6592 192 @echo " "
cb43b372 193 @echo "Installation complete."
f3cb6592
RR
194 @echo " "
195
c801d85f
KB
196clean::
197 $(RM) -rf gtk
a1a2adef
RR
198 $(RM) -rf qt
199 $(RM) -rf motif
c801d85f 200 $(RM) -rf common
29545b1d 201 $(RM) -rf unix
c801d85f
KB
202 $(RM) -rf generic
203 $(RM) -rf png
204 $(RM) -rf zlib
1a6944fd 205 $(RM) -rf iodbc
6de97a3b 206 @$(RM) lexer.c parser.c
c801d85f
KB
207
208#additional things needed for compile
01111366 209ADD_COMPILE=
c801d85f
KB
210
211# include the definitions now
212include ../../template.mak
6de97a3b
RR
213
214# things for the prolog stuff
215
216parser.c: ../common/parser.y lexer.c
217 @if test ! -f parser.y; then \
218 cp -f ../common/parser.y . ; \
219 fi
220 @$(YACC) parser.y
221 @sed -e "s/y.tab.c/parser.y/g" < y.tab.c | \
222 sed -e "s/BUFSIZ/5000/g" | \
223 sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
224 sed -e "s/yy/PROIO_yy/g" | \
225 sed -e "s/input/PROIO_input/g" | \
226 sed -e "s/unput/PROIO_unput/g" > parser.c
227 @$(RM) y.tab.c
228 @$(RM) parser.y
229
230lexer.c: ../common/lexer.l
231 @if test ! -f lexer.l; then \
232 cp -f ../common/lexer.l . ;\
233 fi
234 @$(LEX) lexer.l
235 @sed -e "s/lex.yy.c/lexer.l/g" < lex.yy.c | \
236 sed -e "s/yy/PROIO_yy/g" | \
237 sed -e "s/input/PROIO_input/g" | \
238 sed -e "s/unput/PROIO_unput/g" > lexer.c
239 @$(RM) lex.yy.c
240 @$(RM) lexer.l
241
242clean::
a665764c 243