]> git.saurik.com Git - wxWidgets.git/blob - src/Makefile.in
Corrected grey scrolling windows; added C++Builder 3.0 fixes
[wxWidgets.git] / src / Makefile.in
1 #
2 # wxWindows/Unix main source makefile
3 #
4 # Copyright 1998, Markus Holzhem and Robert Roebling
5 #
6
7 # wxWindows base directory
8 WXBASEDIR=@WXBASEDIR@
9
10 # set the OS type for compilation
11 OS=@OS@
12
13 # compile a library only
14 RULE=gslib
15
16 # define source file for odbc
17 IODBC_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
34
35 # define source file for png
36 PNG_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
54 Z_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
70 # include gtk.inc, qt.inc or motif.inc here
71 include @MAKEINCLUDE@
72
73 # determine library names
74 STATIC_LIBRARY=lib$(LIB_TARGET).a
75 SHARED_LIBRARY=lib$(LIB_TARGET).so.$(LIB_MAJOR).$(LIB_MINOR)
76
77 LIB_CPP_ALL_SRC=$(LIB_CPP_SRC) @UNIX_THREAD@
78 # @GTK_JOYSTICK@
79
80 LIB_C_ALL_SRC=$(LIB_C_SRC) @IODBC_C_SRC@ @PNG_C_SRC@ @Z_C_SRC@ parser.c
81
82 #define library objects
83 LIB_OBJ=\
84 $(LIB_CPP_ALL_SRC:.cpp=.o) \
85 $(LIB_C_ALL_SRC:.c=.o)
86
87 all::
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
91 @if test ! -d motif/xmcombo; then mkdir motif/xmcombo; fi
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
96 @if test ! -d iodbc; then mkdir iodbc; fi
97
98 install::
99 @echo " "
100 @echo "Installing library files and headers.."
101 @echo " "
102 @echo " Creating directories.."
103 @$(WXBASEDIR)/mkinstalldirs \
104 $(includedir)/wx \
105 $(includedir)/wx/gtk \
106 $(includedir)/wx/common \
107 $(includedir)/wx/generic \
108 $(includedir)/wx/protocol \
109 $(libdir)/wx/include/wx/gtk \
110 $(libdir) \
111 $(bindir)
112 @echo " Copying headers from /include/wx"
113 @cd $(WXBASEDIR)/include/wx ; \
114 $(INSTALL) -d $(includedir)/wx ; \
115 for f in *.h ; do \
116 rm -f $(includedir)/wx/$$f ; \
117 $(INSTALL_DATA) $$f $(includedir)/wx/$$f ; \
118 done ; \
119 for f in *.cpp ; do \
120 rm -f $(includedir)/wx/$$f ; \
121 $(INSTALL_DATA) $$f $(includedir)/wx/$$f ; \
122 done
123 @echo " Copying headers from /include/wx/gtk"
124 @cd $(WXBASEDIR)/include/wx/gtk ; \
125 $(INSTALL) -d $(includedir)/wx/gtk ; \
126 for f in *.h ; do \
127 rm -f $(includedir)/wx/gtk/$$f ; \
128 $(INSTALL_DATA) $$f $(includedir)/wx/gtk/$$f ; \
129 done
130 @echo " Copying headers from /include/wx/generic"
131 @cd $(WXBASEDIR)/include/wx/generic ; \
132 $(INSTALL) -d $(includedir)/wx/generic ; \
133 for f in *.h ; do \
134 rm -f $(includedir)/wx/generic/$$f ; \
135 $(INSTALL_DATA) $$f $(includedir)/wx/generic/$$f ; \
136 done
137 @echo " Copying headers from /include/wx/protocol"
138 @cd $(WXBASEDIR)/include/wx/protocol ; \
139 for f in *.h ; do \
140 rm -f $(includedir)/wx/protocol/$$f ; \
141 $(INSTALL_DATA) $$f $(includedir)/wx/protocol/$$f ; \
142 done
143 @echo " Moving setup.h to library path"
144 @cd $(WXBASEDIR)/src ; \
145 $(INSTALL) -d $(libdir)/wx/include/wx/gtk ;\
146 mv $(includedir)/wx/gtk/setup.h $(libdir)/wx/include/wx/gtk/setup.h ;
147 @echo " Copying wx-config"
148 @cd $(WXBASEDIR)/src ; \
149 $(INSTALL) -d $(bindir) ; \
150 rm -f $(bindir)/wx-config ; \
151 $(INSTALL_PROGRAM) $(WXBASEDIR)/wx-config $(bindir)/wx-config
152 @echo " Copying static library"
153 @cd $(WXBASEDIR)/src ; \
154 rm -f $(libdir)/$(STATIC_LIBRARY) ; \
155 $(INSTALL_DATA) $(WXBASEDIR)/lib/$(OS)/$(STATIC_LIBRARY) $(libdir)/$(STATIC_LIBRARY)
156 @if test -f $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) ; then \
157 echo " Copying shared library" ; \
158 rm -f $(libdir)/lib$(LIB_TARGET).so* ; \
159 $(INSTALL_PROGRAM) $(WXBASEDIR)/lib/$(OS)/$(SHARED_LIBRARY) $(libdir)/$(SHARED_LIBRARY) ; \
160 $(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so.$(LIB_MAJOR) ; \
161 $(LN_S) $(SHARED_LIBRARY) $(libdir)/lib$(LIB_TARGET).so ; \
162 echo " " ; \
163 echo " You may have to run ldconfig!" ; \
164 echo " " ; \
165 fi
166 @echo " "
167 @echo "Installation complete."
168 @echo " "
169
170 clean::
171 $(RM) -rf gtk
172 $(RM) -rf qt
173 $(RM) -rf motif
174 $(RM) -rf common
175 $(RM) -rf generic
176 $(RM) -rf png
177 $(RM) -rf zlib
178 $(RM) -rf iodbc
179 @$(RM) lexer.c parser.c
180
181 #additional things needed for compile
182 ADD_COMPILE=
183
184 # include the definitions now
185 include ../../template.mak
186
187 # things for the prolog stuff
188
189 parser.c: ../common/parser.y lexer.c
190 @if test ! -f parser.y; then \
191 cp -f ../common/parser.y . ; \
192 fi
193 @$(YACC) parser.y
194 @sed -e "s/y.tab.c/parser.y/g" < y.tab.c | \
195 sed -e "s/BUFSIZ/5000/g" | \
196 sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
197 sed -e "s/yy/PROIO_yy/g" | \
198 sed -e "s/input/PROIO_input/g" | \
199 sed -e "s/unput/PROIO_unput/g" > parser.c
200 @$(RM) y.tab.c
201 @$(RM) parser.y
202
203 lexer.c: ../common/lexer.l
204 @if test ! -f lexer.l; then \
205 cp -f ../common/lexer.l . ;\
206 fi
207 @$(LEX) lexer.l
208 @sed -e "s/lex.yy.c/lexer.l/g" < lex.yy.c | \
209 sed -e "s/yy/PROIO_yy/g" | \
210 sed -e "s/input/PROIO_input/g" | \
211 sed -e "s/unput/PROIO_unput/g" > lexer.c
212 @$(RM) lex.yy.c
213 @$(RM) lexer.l
214
215 clean::
216