]> git.saurik.com Git - wxWidgets.git/blame - src/Makefile.in
wxMSW wxClipboard implementation
[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 \
30 iodbc/main.c \
31 iodbc/misc.c \
32 iodbc/prepare.c \
33 iodbc/result.c
c801d85f 34
ac57418f
RR
35# define source file for png
36PNG_C_SRC=\
37 png/png.c \
38 png/pngset.c \
39 png/pngget.c \
40 png/pngrutil.c \
41 png/pngtrans.c \
42 png/pngwutil.c \
43 png/pngread.c \
44 png/pngrio.c \
45 png/pngwio.c \
46 png/pngwrite.c \
47 png/pngrtran.c \
48 png/pngwtran.c \
49 png/pngmem.c \
50 png/pngerror.c \
51 png/pngpread.c
52
53# define source file for zlib
54Z_C_SRC=\
55 zlib/adler32.c \
56 zlib/compress.c \
57 zlib/crc32.c \
58 zlib/gzio.c \
59 zlib/uncompr.c \
60 zlib/deflate.c \
61 zlib/trees.c \
62 zlib/zutil.c \
63 zlib/inflate.c \
64 zlib/infblock.c \
65 zlib/inftrees.c \
66 zlib/infcodes.c \
67 zlib/infutil.c \
68 zlib/inffast.c
69
a1a2adef
RR
70# include gtk.inc, qt.inc or motif.inc here
71include @MAKEINCLUDE@
c801d85f 72
f3cb6592
RR
73# determine library names
74STATIC_LIBRARY=lib$(LIB_TARGET).a
75SHARED_LIBRARY=lib$(LIB_TARGET).so.$(LIB_MAJOR).$(LIB_MINOR)
76
f3855ef0
RR
77LIB_CPP_ALL_SRC=$(LIB_CPP_SRC) @UNIX_THREAD@
78# @GTK_JOYSTICK@
c801d85f 79
ac57418f 80LIB_C_ALL_SRC=$(LIB_C_SRC) @IODBC_C_SRC@ @PNG_C_SRC@ @Z_C_SRC@ parser.c
6de97a3b 81
c801d85f
KB
82#define library objects
83LIB_OBJ=\
a1a2adef 84 $(LIB_CPP_ALL_SRC:.cpp=.o) \
6de97a3b 85 $(LIB_C_ALL_SRC:.c=.o)
c801d85f
KB
86
87all::
6de97a3b
RR
88 @if test ! -d gtk; then mkdir gtk; fi
89 @if test ! -d qt; then mkdir qt; fi
90 @if test ! -d motif; then mkdir motif; fi
892dbe99 91 @if test ! -d motif/xmcombo; then mkdir motif/xmcombo; fi
6de97a3b
RR
92 @if test ! -d common; then mkdir common; fi
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 \
d8c83875
RR
107 $(includedir)/wx/common \
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
cb43b372 155 @echo " Moving setup.h to library path"
8c739649
RR
156 @if test "@TOOLKIT@" = "GTK" ; then \
157 cd $(WXBASEDIR)/src ; \
158 $(INSTALL) -d $(libdir)/wx/include/wx/gtk ; \
159 mv $(includedir)/wx/gtk/setup.h $(libdir)/wx/include/wx/gtk/setup.h ; \
160 fi
161 @echo " Moving setup.h to library path"
162 @if test "@TOOLKIT@" = "MOTIF" ; then \
163 cd $(WXBASEDIR)/src ; \
164 $(INSTALL) -d $(libdir)/wx/include/wx/motif ; \
165 mv $(includedir)/wx/motif/setup.h $(libdir)/wx/include/wx/motif/setup.h ; \
166 fi
f3cb6592 167 @echo " Copying wx-config"
e52f60e6
RR
168 @cd $(WXBASEDIR)/src ; \
169 $(INSTALL) -d $(bindir) ; \
f3cb6592 170 rm -f $(bindir)/wx-config ; \
e52f60e6 171 $(INSTALL_PROGRAM) $(WXBASEDIR)/wx-config $(bindir)/wx-config
f3cb6592 172 @echo " Copying static library"
e52f60e6 173 @cd $(WXBASEDIR)/src ; \
f3cb6592 174 rm -f $(libdir)/$(STATIC_LIBRARY) ; \
e52f60e6 175 $(INSTALL_DATA) $(WXBASEDIR)/lib/$(OS)/$(STATIC_LIBRARY) $(libdir)/$(STATIC_LIBRARY)
8fdca65c 176 @if test -f $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) ; then \
cb43b372 177 echo " Copying shared library" ; \
cb43b372 178 rm -f $(libdir)/lib$(LIB_TARGET).so* ; \
e52f60e6 179 $(INSTALL_PROGRAM) $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) $(libdir)/$(SHARED_LIBRARY) ; \
d8c83875
RR
180 $(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so.$(LIB_MAJOR) ; \
181 $(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so ; \
cb43b372
RR
182 echo " " ; \
183 echo " You may have to run ldconfig!" ; \
184 echo " " ; \
d8c83875 185 fi
f3cb6592 186 @echo " "
cb43b372 187 @echo "Installation complete."
f3cb6592
RR
188 @echo " "
189
c801d85f
KB
190clean::
191 $(RM) -rf gtk
a1a2adef
RR
192 $(RM) -rf qt
193 $(RM) -rf motif
c801d85f
KB
194 $(RM) -rf common
195 $(RM) -rf generic
196 $(RM) -rf png
197 $(RM) -rf zlib
1a6944fd 198 $(RM) -rf iodbc
6de97a3b 199 @$(RM) lexer.c parser.c
c801d85f
KB
200
201#additional things needed for compile
01111366 202ADD_COMPILE=
c801d85f
KB
203
204# include the definitions now
205include ../../template.mak
6de97a3b
RR
206
207# things for the prolog stuff
208
209parser.c: ../common/parser.y lexer.c
210 @if test ! -f parser.y; then \
211 cp -f ../common/parser.y . ; \
212 fi
213 @$(YACC) parser.y
214 @sed -e "s/y.tab.c/parser.y/g" < y.tab.c | \
215 sed -e "s/BUFSIZ/5000/g" | \
216 sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
217 sed -e "s/yy/PROIO_yy/g" | \
218 sed -e "s/input/PROIO_input/g" | \
219 sed -e "s/unput/PROIO_unput/g" > parser.c
220 @$(RM) y.tab.c
221 @$(RM) parser.y
222
223lexer.c: ../common/lexer.l
224 @if test ! -f lexer.l; then \
225 cp -f ../common/lexer.l . ;\
226 fi
227 @$(LEX) lexer.l
228 @sed -e "s/lex.yy.c/lexer.l/g" < lex.yy.c | \
229 sed -e "s/yy/PROIO_yy/g" | \
230 sed -e "s/input/PROIO_input/g" | \
231 sed -e "s/unput/PROIO_unput/g" > lexer.c
232 @$(RM) lex.yy.c
233 @$(RM) lexer.l
234
235clean::
a665764c 236