]> git.saurik.com Git - wxWidgets.git/blob - src/Makefile.in
added a comment and hopefully improved extent detectionn
[wxWidgets.git] / src / Makefile.in
1 #
2 # wxGTK main source makefile
3 #
4 # Copyright 1998, Markus Holzhem and Robert Roebling
5 #
6
7 # wxGTK 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 common stuff
17
18 # needed for unactivated
19 NONE =
20
21 # define library name
22 LIB_TARGET=wx_gtk
23 LIB_MAJOR=1
24 LIB_MINOR=90
25
26 # define library sources
27
28 LIB_CPP_SRC=\
29 \
30 common/cmndata.cpp \
31 common/config.cpp \
32 common/date.cpp \
33 common/docmdi.cpp \
34 common/docview.cpp \
35 common/dynarray.cpp \
36 common/event.cpp \
37 common/file.cpp \
38 common/fileconf.cpp \
39 common/filefn.cpp \
40 common/gdicmn.cpp \
41 common/hash.cpp \
42 common/helpbase.cpp \
43 common/intl.cpp \
44 common/ipcbase.cpp \
45 common/layout.cpp \
46 common/list.cpp \
47 common/log.cpp \
48 common/matrix.cpp \
49 common/memory.cpp \
50 common/module.cpp \
51 common/object.cpp \
52 common/odbc.cpp \
53 common/postscrp.cpp \
54 common/prntbase.cpp \
55 common/string.cpp \
56 common/textfile.cpp \
57 common/time.cpp \
58 common/timercmn.cpp \
59 common/utilscmn.cpp \
60 common/wincmn.cpp \
61 common/framecmn.cpp \
62 common/stream.cpp \
63 common/datstrm.cpp \
64 common/fstream.cpp \
65 common/mstream.cpp \
66 common/zstream.cpp \
67 common/objstrm.cpp \
68 \
69 gtk/app.cpp \
70 gtk/bitmap.cpp \
71 gtk/brush.cpp \
72 gtk/button.cpp \
73 gtk/checkbox.cpp \
74 gtk/choice.cpp \
75 gtk/colour.cpp \
76 gtk/control.cpp \
77 gtk/combobox.cpp \
78 gtk/cursor.cpp \
79 gtk/data.cpp \
80 gtk/dc.cpp \
81 gtk/dcclient.cpp \
82 gtk/dcmemory.cpp \
83 gtk/dcscreen.cpp \
84 gtk/dnd.cpp \
85 gtk/dialog.cpp \
86 gtk/filedlg.cpp \
87 gtk/font.cpp \
88 gtk/frame.cpp \
89 gtk/gauge.cpp \
90 gtk/gdiobj.cpp \
91 gtk/icon.cpp \
92 gtk/listbox.cpp \
93 gtk/mdi.cpp \
94 gtk/menu.cpp \
95 gtk/notebook.cpp \
96 gtk/palette.cpp \
97 gtk/pen.cpp \
98 gtk/radiobox.cpp \
99 gtk/radiobut.cpp \
100 gtk/region.cpp \
101 gtk/scrolbar.cpp \
102 gtk/settings.cpp \
103 gtk/slider.cpp \
104 gtk/statbox.cpp \
105 gtk/stattext.cpp \
106 gtk/tbargtk.cpp \
107 gtk/textctrl.cpp \
108 gtk/timer.cpp \
109 gtk/utilsgtk.cpp \
110 gtk/utilsres.cpp \
111 gtk/window.cpp \
112 @GTK_JOYSTICK@ \
113 @UNIX_THREAD@ \
114 \
115 generic/choicdgg.cpp \
116 generic/colrdlgg.cpp \
117 generic/fontdlgg.cpp \
118 generic/gridg.cpp \
119 generic/imaglist.cpp \
120 generic/listctrl.cpp \
121 generic/msgdlgg.cpp \
122 generic/panelg.cpp \
123 generic/printps.cpp \
124 generic/prntdlgg.cpp \
125 generic/scrolwin.cpp \
126 generic/splitter.cpp \
127 generic/statusbr.cpp \
128 generic/tabg.cpp \
129 generic/textdlgg.cpp \
130 generic/treectrl.cpp
131
132 LIB_C_SRC=\
133 common/extended.c \
134 \
135 gtk/win_gtk.c \
136 \
137 png/png.c \
138 png/pngset.c \
139 png/pngget.c \
140 png/pngrutil.c \
141 png/pngtrans.c \
142 png/pngwutil.c \
143 png/pngread.c \
144 png/pngrio.c \
145 png/pngwio.c \
146 png/pngwrite.c \
147 png/pngrtran.c \
148 png/pngwtran.c \
149 png/pngmem.c \
150 png/pngerror.c \
151 png/pngpread.c \
152 \
153 zlib/adler32.c \
154 zlib/compress.c \
155 zlib/crc32.c \
156 zlib/gzio.c \
157 zlib/uncompr.c \
158 zlib/deflate.c \
159 zlib/trees.c \
160 zlib/zutil.c \
161 zlib/inflate.c \
162 zlib/infblock.c \
163 zlib/inftrees.c \
164 zlib/infcodes.c \
165 zlib/infutil.c \
166 zlib/inffast.c \
167 \
168 gdk_imlib/cache.c \
169 gdk_imlib/colors.c \
170 gdk_imlib/globals.c \
171 gdk_imlib/load.c \
172 gdk_imlib/misc.c \
173 gdk_imlib/rend.c \
174 gdk_imlib/save.c \
175 gdk_imlib/utils.c \
176 \
177 iodbc/dlf.c \
178 iodbc/dlproc.c \
179 iodbc/herr.c \
180 iodbc/henv.c \
181 iodbc/hdbc.c \
182 iodbc/hstmt.c \
183 iodbc/connect.c \
184 iodbc/prepare.c \
185 iodbc/result.c \
186 iodbc/execute.c \
187 iodbc/fetch.c \
188 iodbc/info.c \
189 iodbc/catalog.c \
190 iodbc/misc.c \
191 iodbc/itrace.c
192
193 #define library objects
194 LIB_OBJ=\
195 $(LIB_CPP_SRC:.cpp=.o) \
196 $(LIB_C_SRC:.c=.o)
197
198 all::
199 -../mkdirs
200
201 clean::
202 $(RM) -rf gtk
203 $(RM) -rf common
204 $(RM) -rf generic
205 $(RM) -rf png
206 $(RM) -rf zlib
207 $(RM) -rf gdk_imlib
208 $(RM) -rf iodbc
209
210 #additional things needed for compile
211 ADD_COMPILE= \
212 -DHAVE_LIBPNG -DDJPEG_PROG=\"\" -DCJPEG_PROG=\"\"
213
214 # include the definitions now
215 include ../../template.mak