]>
Commit | Line | Data |
---|---|---|
421a0171 | 1 | ##################################################################### |
ad9edf45 | 2 | # File: makefile.unx |
421a0171 | 3 | # Purpose: Makefile for Unix wxWindows ports (both GUI and wxBase) |
3a922bb4 | 4 | # Author: Julian Smart, Robert Roebling, Vadim Zeitlin, Ron Lee |
ad9edf45 | 5 | # Created: 1993 |
421a0171 | 6 | # Version: $Id$ |
ad9edf45 RR |
7 | # Copyright:(c) 1993, AIAI, University of Edinburgh, |
8 | # Copyright:(c) 1999, Vadim Zeitlin | |
9 | # Copyright:(c) 1999, Robert Roebling | |
3a922bb4 | 10 | # Copyright:(c) 2001, Ron Lee |
421a0171 | 11 | ##################################################################### |
ad9edf45 RR |
12 | |
13 | include ./src/make.env | |
14 | ||
421a0171 VZ |
15 | #################### the implicit rules ############################# |
16 | ||
17 | # NB: we use the old style suffix rules (.c.o) and not the GNU make | |
18 | # implicit rules (%.o: %.c) because they are more portable, in | |
19 | # particular the BSD make understands the former but not the | |
20 | # latter | |
21 | .SUFFIXES: .o .c .cpp .cxx .rsrc .r | |
ad9edf45 | 22 | |
421a0171 | 23 | .c.o: |
25d0687a | 24 | $(CC) -c $(CFLAGS) $(PICFLAGS) -o $@ $< |
ad9edf45 | 25 | |
421a0171 | 26 | .cpp.o: |
25d0687a | 27 | $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< |
ad9edf45 | 28 | |
421a0171 | 29 | .cxx.o: |
25d0687a | 30 | $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< |
ad9edf45 | 31 | |
421a0171 | 32 | .rsrc.r: |
d08b457b | 33 | $(DEREZ) $^ Carbon.r -useDF > $@ |
ad9edf45 | 34 | |
421a0171 | 35 | ############################# Paths ################################# |
ad9edf45 RR |
36 | |
37 | srcdir = @srcdir@ | |
1e6feb95 | 38 | top_srcdir = @top_srcdir@ |
ad9edf45 | 39 | |
1e6feb95 VZ |
40 | VP1 = @TOOLKIT_VPATH@ |
41 | VP2 = @top_srcdir@/src/common | |
42 | VP3 = @top_srcdir@/src/generic | |
43 | VP4 = @top_srcdir@/src/unix | |
44 | VP5 = @top_srcdir@/src/html | |
45 | VP6 = @top_srcdir@/src/png | |
46 | VP7 = @top_srcdir@/src/jpeg | |
47 | VP8 = @top_srcdir@/src/tiff | |
48 | VP9 = @top_srcdir@/src/zlib | |
0b2effe9 | 49 | VPA = @top_srcdir@/src/regex |
1e6feb95 VZ |
50 | VP10 = @top_srcdir@/src/iodbc |
51 | VP11 = @top_srcdir@/src/msw/ole | |
3fed1840 | 52 | |
e183484e VZ |
53 | # the comment at the end of the next line is needed because otherwise autoconf |
54 | # would remove this line completely - it contains a built-in hack to remove | |
55 | # any VPATH assignment not containing ':' | |
3a922bb4 | 56 | VPATH = $(VP1)@PATH_IFS@$(VP2)@PATH_IFS@$(VP3)@PATH_IFS@$(VP4)@PATH_IFS@$(VP5)@PATH_IFS@$(VP6)@PATH_IFS@$(VP7)@PATH_IFS@$(VP8)@PATH_IFS@$(VP9)@PATH_IFS@$(VPA)@PATH_IFS@$(VP10)@PATH_IFS@$(VP11) # ':' for autoconf |
ad9edf45 | 57 | |
ad9edf45 RR |
58 | prefix = @prefix@ |
59 | exec_prefix = @exec_prefix@ | |
60 | ||
61 | bindir = @bindir@ | |
ad9edf45 | 62 | datadir = @datadir@ |
ad9edf45 | 63 | libdir = @libdir@ |
ad9edf45 RR |
64 | mandir = @mandir@ |
65 | includedir = @includedir@ | |
ad9edf45 | 66 | |
f6bcfd97 BP |
67 | localedir = $(datadir)/locale |
68 | ||
ad9edf45 | 69 | top_builddir = . |
3a922bb4 | 70 | build_libdir = $(top_builddir)/lib |
ad9edf45 RR |
71 | |
72 | INSTALL = @INSTALL@ | |
73 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
74 | INSTALL_DATA = @INSTALL_DATA@ | |
2224580a | 75 | INSTALL_SCRIPT = @INSTALL@ |
3a922bb4 | 76 | |
ad9edf45 RR |
77 | build_alias = @build_alias@ |
78 | build_triplet = @build@ | |
79 | host_alias = @host_alias@ | |
80 | host_triplet = @host@ | |
81 | target_alias = @target_alias@ | |
82 | target_triplet = @target@ | |
83 | ||
dad6c0ea VZ |
84 | USE_GUI=@USE_GUI@ |
85 | ||
ad9edf45 RR |
86 | ############################# Dirs ################################# |
87 | ||
88 | WXDIR = $(top_srcdir) | |
89 | ||
90 | # Subordinate library possibilities | |
91 | ||
4cb122de RR |
92 | SRCDIR = $(WXDIR)/src |
93 | GENDIR = $(WXDIR)/src/generic | |
94 | COMMDIR = $(WXDIR)/src/common | |
95 | HTMLDIR = $(WXDIR)/src/html | |
96 | UNIXDIR = $(WXDIR)/src/unix | |
97 | PNGDIR = $(WXDIR)/src/png | |
98 | JPEGDIR = $(WXDIR)/src/jpeg | |
1d62a8b4 | 99 | TIFFDIR = $(WXDIR)/src/tiff |
4cb122de | 100 | ZLIBDIR = $(WXDIR)/src/zlib |
3a922bb4 | 101 | REGEXDIR = $(WXDIR)/src/regex |
4cb122de | 102 | GTKDIR = $(WXDIR)/src/gtk |
cb61c62d RR |
103 | X11DIR = $(WXDIR)/src/x11 |
104 | MGLDIR = $(WXDIR)/src/mgl | |
ad9edf45 | 105 | MOTIFDIR = $(WXDIR)/src/motif |
4cb122de | 106 | MSWDIR = $(WXDIR)/src/msw |
9260520f | 107 | PMDIR = $(WXDIR)/src/os2 |
b4085ce6 | 108 | MACDIR = $(WXDIR)/src/mac |
c09ab26a | 109 | ODBCDIR = $(WXDIR)/src/iodbc |
3fed1840 | 110 | FTDIR = $(WXDIR)/src/freetype |
4cb122de RR |
111 | INCDIR = $(WXDIR)/include |
112 | SAMPDIR = $(WXDIR)/samples | |
dfd6b52f | 113 | DEMODIR = $(WXDIR)/demos |
641d87d8 | 114 | UTILSDIR = $(WXDIR)/utils |
a6f3598d | 115 | MISCDIR = $(WXDIR)/misc |
ad9edf45 | 116 | |
f6bcfd97 BP |
117 | DOCDIR = $(WXDIR)/docs |
118 | INTLDIR = $(WXDIR)/locale | |
ad9edf45 | 119 | |
a4aad961 RR |
120 | ########################## Archive name ############################### |
121 | ||
31fe72b6 | 122 | # append a version suffix x.y.z to all file names |
65eb9855 | 123 | VER_MAJMIN=$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER) |
e59a8895 | 124 | VER_SUFFIX=$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER)$(EXTRA_VER) |
16b0e4ac VZ |
125 | WXARCHIVE=@DISTDIR@-$(VER_SUFFIX).tar.gz |
126 | WXGLARCHIVE=@DISTDIR@-gl-$(VER_SUFFIX).tar.gz | |
127 | WXSAMPLES=wx$(TOOLKIT)-samples-$(VER_SUFFIX).tar.gz | |
128 | WXDEMOS=wx$(TOOLKIT)-demos-$(VER_SUFFIX).tar.gz | |
31fe72b6 | 129 | |
16b0e4ac VZ |
130 | WXARCHIVE_BZIP=@DISTDIR@-$(VER_SUFFIX).tar.bz2 |
131 | WXGLARCHIVE_BZIP=@DISTDIR@-gl-$(VER_SUFFIX).tar.bz2 | |
132 | WXSAMPLES_BZIP=wx$(TOOLKIT)-samples-$(VER_SUFFIX).tar.bz2 | |
133 | WXDEMOS_BZIP=wx$(TOOLKIT)-demos-$(VER_SUFFIX).tar.bz2 | |
f6bcfd97 | 134 | |
16b0e4ac VZ |
135 | DISTDIRNAME=@DISTDIR@-$(VER_SUFFIX) |
136 | DISTDIR=./_dist_dir/$(DISTDIRNAME) | |
a4aad961 | 137 | |
f6bcfd97 | 138 | |
ad9edf45 RR |
139 | ############################## Files ################################## |
140 | ||
c7206e64 | 141 | WX_LINGUAS = `cd $(top_srcdir)/locale && ls *.mo 2> /dev/null | sed -n 's/\.mo//p'` |
f6bcfd97 | 142 | |
2224580a VZ |
143 | # this line will include a file which defines ALL_SOURCES, ALL_OBJECTS, |
144 | # ALL_DEPFILES and ALL_HEADERS variables with the complete list of .cpp, .o, | |
145 | # .d and .h/.inl files for the current toolkit | |
879df073 | 146 | include @PORT_FILES@ |
2224580a | 147 | |
9b695262 VZ |
148 | SOURCES = @ALL_SOURCES@ |
149 | HEADERS = @ALL_HEADERS@ | |
2224580a VZ |
150 | |
151 | # for the objects and depfiles, we might be bulding only part of them | |
152 | # depending on configure arguments, so select a subset of ALL | |
153 | OBJECTS = @ALL_OBJECTS@ | |
ad9edf45 | 154 | |
2224580a VZ |
155 | # the object files of sublibraries (we assume that they don't change [often], |
156 | # so we don't generate these lists with tmake but embed them here) | |
0b2effe9 VZ |
157 | REGEXOBJS = \ |
158 | regcomp.o \ | |
159 | regexec.o \ | |
160 | regerror.o \ | |
161 | regfree.o | |
162 | ||
163 | ZLIBOBJS = \ | |
5586805b RR |
164 | adler32.o \ |
165 | compress.o \ | |
166 | crc32.o \ | |
167 | gzio.o \ | |
168 | uncompr.o \ | |
169 | deflate.o \ | |
170 | trees.o \ | |
171 | zutil.o \ | |
172 | inflate.o \ | |
173 | infblock.o \ | |
174 | inftrees.o \ | |
175 | infcodes.o \ | |
176 | infutil.o \ | |
177 | inffast.o | |
ad9edf45 | 178 | |
0b2effe9 | 179 | PNGOBJS = \ |
5586805b RR |
180 | png.o \ |
181 | pngread.o \ | |
182 | pngrtran.o \ | |
183 | pngrutil.o \ | |
184 | pngpread.o \ | |
185 | pngtrans.o \ | |
186 | pngwrite.o \ | |
187 | pngwtran.o \ | |
188 | pngwutil.o \ | |
189 | pngerror.o \ | |
190 | pngmem.o \ | |
191 | pngwio.o \ | |
192 | pngrio.o \ | |
193 | pngget.o \ | |
194 | pngset.o | |
ad9edf45 | 195 | |
0b2effe9 | 196 | JPEGOBJS = \ |
5586805b RR |
197 | jcomapi.o \ |
198 | jutils.o \ | |
199 | jerror.o \ | |
200 | jmemmgr.o \ | |
201 | jmemnobs.o \ | |
202 | jcapimin.o \ | |
203 | jcapistd.o \ | |
204 | jctrans.o \ | |
205 | jcparam.o \ | |
206 | jdatadst.o \ | |
207 | jcinit.o \ | |
208 | jcmaster.o \ | |
209 | jcmarker.o \ | |
210 | jcmainct.o \ | |
211 | jcprepct.o \ | |
212 | jccoefct.o \ | |
213 | jccolor.o \ | |
214 | jcsample.o \ | |
215 | jchuff.o \ | |
216 | jcphuff.o \ | |
217 | jcdctmgr.o \ | |
218 | jfdctfst.o \ | |
219 | jfdctflt.o \ | |
220 | jfdctint.o \ | |
221 | jdapimin.o \ | |
222 | jdapistd.o \ | |
223 | jdtrans.o \ | |
224 | jdatasrc.o \ | |
225 | jdmaster.o \ | |
226 | jdinput.o \ | |
227 | jdmarker.o \ | |
228 | jdhuff.o \ | |
229 | jdphuff.o \ | |
230 | jdmainct.o \ | |
231 | jdcoefct.o \ | |
232 | jdpostct.o \ | |
233 | jddctmgr.o \ | |
234 | jidctfst.o \ | |
235 | jidctflt.o \ | |
236 | jidctint.o \ | |
237 | jidctred.o \ | |
238 | jdsample.o \ | |
239 | jdcolor.o \ | |
240 | jquant1.o \ | |
241 | jquant2.o \ | |
242 | jdmerge.o | |
ad9edf45 | 243 | |
0b2effe9 | 244 | TIFFOBJS = \ |
c7a2bf27 RR |
245 | tif_aux.o \ |
246 | tif_close.o \ | |
247 | tif_codec.o \ | |
248 | tif_compress.o \ | |
249 | tif_dir.o \ | |
250 | tif_dirinfo.o \ | |
251 | tif_dirread.o \ | |
252 | tif_dirwrite.o \ | |
253 | tif_dumpmode.o \ | |
254 | tif_error.o \ | |
255 | tif_fax3.o \ | |
256 | tif_fax3sm.o \ | |
257 | tif_getimage.o \ | |
258 | tif_jpeg.o \ | |
259 | tif_flush.o \ | |
260 | tif_lzw.o \ | |
b47c832e | 261 | tif_luv.o \ |
c7a2bf27 RR |
262 | tif_next.o \ |
263 | tif_open.o \ | |
264 | tif_packbits.o \ | |
265 | tif_pixarlog.o \ | |
266 | tif_predict.o \ | |
267 | tif_print.o \ | |
268 | tif_read.o \ | |
269 | tif_swab.o \ | |
270 | tif_strip.o \ | |
271 | tif_thunder.o \ | |
272 | tif_tile.o \ | |
273 | tif_unix.o \ | |
274 | tif_version.o \ | |
275 | tif_warning.o \ | |
276 | tif_write.o \ | |
277 | tif_zip.o | |
278 | ||
103aab26 | 279 | IODBCOBJS = \ |
e115e771 RR |
280 | catalog.o \ |
281 | connect.o \ | |
282 | dlf.o \ | |
283 | dlproc.o \ | |
284 | execute.o \ | |
285 | fetch.o \ | |
286 | hdbc.o \ | |
287 | henv.o \ | |
288 | herr.o \ | |
289 | hstmt.o \ | |
290 | info.o \ | |
291 | itrace.o \ | |
292 | misc.o \ | |
293 | prepare.o \ | |
294 | result.o | |
7d88e244 | 295 | |
e59a8895 | 296 | |
2224580a | 297 | ############################## Rules ################################## |
f85afd4e | 298 | |
3a922bb4 RL |
299 | SONAME_FLAGS = @SONAME_FLAGS@ |
300 | SONAME_FLAGS_GL = @SONAME_FLAGS_GL@ | |
1d62a8b4 | 301 | |
c7206e64 | 302 | all: @WX_ALL@ |
ad9edf45 | 303 | |
3a922bb4 RL |
304 | $(build_libdir)/@WX_LIBRARY_NAME_STATIC@: $(OBJECTS) |
305 | @$(INSTALL) -d $(build_libdir) | |
65fd49a4 | 306 | @$(RM) $@ |
3a922bb4 RL |
307 | $(AR) $(AROPTIONS) $@ $(OBJECTS) |
308 | $(RANLIB) $@ | |
ad9edf45 | 309 | |
3a922bb4 RL |
310 | $(build_libdir)/@WX_LIBRARY_NAME_STATIC_GL@: glcanvas.o |
311 | @$(INSTALL) -d $(build_libdir) | |
65fd49a4 | 312 | @$(RM) $@ |
3a922bb4 RL |
313 | $(AR) $(AROPTIONS) $@ glcanvas.o |
314 | $(RANLIB) $@ | |
bdad4e7e | 315 | |
3a922bb4 RL |
316 | $(build_libdir)/@WX_LIBRARY_NAME_SHARED@: $(OBJECTS) |
317 | @$(INSTALL) -d $(build_libdir) | |
318 | $(SHARED_LD) $@ $(SONAME_FLAGS) $(OBJECTS) $(EXTRALIBS) | |
b4085ce6 | 319 | |
3a922bb4 RL |
320 | $(build_libdir)/@WX_LIBRARY_NAME_SHARED_GL@: glcanvas.o $(build_libdir)/@WX_LIBRARY_NAME_SHARED@ |
321 | @$(INSTALL) -d $(build_libdir) | |
322 | $(SHARED_LD) $@ $(SONAME_FLAGS_GL) glcanvas.o -L$(build_libdir) @WXCONFIG_LIBS@ $(EXTRALIBS) $(OPENGLLIBS) | |
b4085ce6 | 323 | |
d08b457b | 324 | $(build_libdir)/@WX_RESOURCES_MACOSX@: $(MACRESOURCES) |
3a922bb4 RL |
325 | @$(INSTALL) -d $(build_libdir) |
326 | $(RESCOMP) -d __UNIX__ -useDF $^ -o $@ | |
2f51a9ec | 327 | |
3a922bb4 RL |
328 | $(build_libdir)/@WX_LIBRARY_LINK1@: $(build_libdir)/@WX_LIBRARY_NAME_SHARED@ |
329 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK1@ | |
330 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK2@ | |
331 | cd $(build_libdir) \ | |
07eb77a6 | 332 | && $(LN_S) @WX_TARGET_LIBRARY@ @WX_LIBRARY_LINK1@ \ |
3a922bb4 | 333 | && $(LN_S) @WX_TARGET_LIBRARY@ @WX_LIBRARY_LINK2@ |
b4085ce6 | 334 | |
3a922bb4 RL |
335 | $(build_libdir)/@WX_LIBRARY_LINK1_GL@: $(build_libdir)/@WX_LIBRARY_NAME_SHARED_GL@ |
336 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK1_GL@ | |
337 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK2_GL@ | |
338 | cd $(build_libdir) \ | |
339 | && $(LN_S) @WX_TARGET_LIBRARY_GL@ @WX_LIBRARY_LINK1_GL@ \ | |
340 | && $(LN_S) @WX_TARGET_LIBRARY_GL@ @WX_LIBRARY_LINK2_GL@ | |
b4085ce6 | 341 | |
613d0995 | 342 | $(OBJECTS): $(WXDIR)/include/wx/defs.h $(WXDIR)/include/wx/object.h |
ad9edf45 | 343 | |
613d0995 | 344 | parser.o: parser.c lexer.c |
d22ff69d | 345 | $(CCLEX) -c $(CFLAGS) -I. $(PICFLAGS) -o $@ parser.c |
ad9edf45 | 346 | |
613d0995 | 347 | parser.c: $(COMMDIR)/parser.y lexer.c |
ad9edf45 RR |
348 | $(YACC) $(COMMDIR)/parser.y |
349 | @sed -e "s;$(COMMDIR)/y.tab.c;parser.y;g" < y.tab.c | \ | |
350 | sed -e "s/BUFSIZ/5000/g" | \ | |
351 | sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \ | |
352 | sed -e "s/yy/PROIO_yy/g" | \ | |
353 | sed -e "s/input/PROIO_input/g" | \ | |
354 | sed -e "s/unput/PROIO_unput/g" > parser.c | |
355 | @$(RM) y.tab.c | |
356 | ||
613d0995 | 357 | lexer.c: $(COMMDIR)/lexer.l |
ad9edf45 | 358 | $(LEX) $(COMMDIR)/lexer.l |
9260520f | 359 | @sed -e "s;$(COMMDIR)/@LEX_STEM@.c;lexer.l;g" < @LEX_STEM@.c | \ |
ad9edf45 RR |
360 | sed -e "s/yy/PROIO_yy/g" | \ |
361 | sed -e "s/input/PROIO_input/g" | \ | |
362 | sed -e "s/unput/PROIO_unput/g" > lexer.c | |
9260520f | 363 | @$(RM) @LEX_STEM@.c |
ad9edf45 | 364 | |
613d0995 | 365 | @IF_GNU_MAKE@-include $(OBJECTS:.o=.d) |
3a922bb4 RL |
366 | |
367 | CREATE_INSTALLED_LINKS: preinstall | |
368 | $(RM) $(libdir)/@WX_LIBRARY_LINK1@ | |
369 | $(RM) $(libdir)/@WX_LIBRARY_LINK2@ | |
370 | cd $(libdir) \ | |
371 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK1@ \ | |
372 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK2@ | |
373 | ||
374 | CREATE_INSTALLED_LINKS_GL: preinstall_gl | |
375 | $(RM) $(libdir)/@WX_LIBRARY_LINK1_GL@ | |
376 | $(RM) $(libdir)/@WX_LIBRARY_LINK2_GL@ | |
377 | cd $(libdir) \ | |
378 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK1_GL@ \ | |
379 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK2_GL@ | |
5586805b | 380 | |
2224580a | 381 | afminstall: preinstall |
e09bdfbe | 382 | @if test ! -d $(datadir); then $(INSTALL) -d $(datadir); fi |
dad6c0ea | 383 | $(INSTALL) -d $(datadir)/wx |
65eb9855 VS |
384 | $(INSTALL) -d $(datadir)/wx/$(VER_MAJMIN) |
385 | $(INSTALL) -d $(datadir)/wx/$(VER_MAJMIN)/afm | |
386 | $(INSTALL) -d $(datadir)/wx/$(VER_MAJMIN)/gs_afm | |
387 | $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/$(VER_MAJMIN)/afm | |
388 | $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/$(VER_MAJMIN)/gs_afm | |
debc175a VS |
389 | |
390 | m4datainstall: preinstall | |
391 | $(INSTALL) -d $(datadir)/aclocal | |
392 | $(INSTALL_DATA) $(top_srcdir)/wxwin.m4 $(datadir)/aclocal | |
2224580a VZ |
393 | |
394 | # this is the real install target: copies the library, wx-config and the | |
395 | # headers to the installation directory | |
3a922bb4 | 396 | preinstall: $(build_libdir)/@WX_TARGET_LIBRARY@ $(top_builddir)/wx@TOOLCHAIN_NAME@-config |
ad9edf45 RR |
397 | @echo " " |
398 | @echo " Installing wxWindows..." | |
399 | @echo " " | |
400 | ||
e09bdfbe VZ |
401 | @if test ! -d $(prefix); then $(INSTALL) -d $(prefix); fi |
402 | @if test ! -d $(bindir); then $(INSTALL) -d $(bindir); fi | |
403 | @if test ! -d $(libdir); then $(INSTALL) -d $(libdir); fi | |
8b17ba72 | 404 | |
3a922bb4 RL |
405 | $(INSTALL_SCRIPT) $(top_builddir)/wx@TOOLCHAIN_NAME@-config $(bindir)/wx@TOOLCHAIN_NAME@-config |
406 | cd $(bindir) && rm -f wx-config && $(LN_S) wx@TOOLCHAIN_NAME@-config wx-config | |
65eb9855 | 407 | @INSTALL_LIBRARY@ $(build_libdir)/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@ |
613d0995 | 408 | @if test "x@WX_LIBRARY_IMPORTLIB@" != "x"; then \ |
77e13408 | 409 | $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_LIBRARY_IMPORTLIB@ $(libdir)/@WX_LIBRARY_IMPORTLIB@; fi |
8b17ba72 RR |
410 | |
411 | $(INSTALL) -d $(libdir)/wx | |
412 | $(INSTALL) -d $(libdir)/wx/include | |
3a922bb4 RL |
413 | $(INSTALL) -d $(libdir)/wx/include/@TOOLCHAIN_NAME@ |
414 | $(INSTALL) -d $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx | |
415 | $(INSTALL_DATA) $(build_libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h \ | |
416 | $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h | |
b4085ce6 | 417 | |
8b17ba72 | 418 | $(INSTALL) -d $(includedir)/wx |
3a922bb4 | 419 | @# FIXME: This will erroneously install a wx/base dir for wxBase.. |
9260520f VZ |
420 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/@TOOLKIT_DIR@; fi |
421 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/html; fi | |
9260520f | 422 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/generic; fi |
f676c7ff MB |
423 | @if test "@TOOLKIT_DIR@" = "msw"; then $(INSTALL) -d $(includedir)/wx/msw/ole; fi |
424 | ||
84a32a77 VZ |
425 | @# always install msw headers for wxBase, it's much simpler |
426 | @if test "$(USE_GUI)" = 0; then $(INSTALL) -d $(includedir)/wx/msw; fi | |
427 | ||
2224580a VZ |
428 | $(INSTALL) -d $(includedir)/wx/protocol |
429 | $(INSTALL) -d $(includedir)/wx/unix | |
ad9edf45 RR |
430 | @list='$(HEADERS)'; for p in $$list; do \ |
431 | $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \ | |
432 | echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \ | |
433 | done | |
9260520f | 434 | |
e09bdfbe | 435 | @if test ! -d $(localedir); then $(INSTALL) -d $(localedir); fi |
f6bcfd97 | 436 | @for p in $(WX_LINGUAS); do \ |
e09bdfbe VZ |
437 | if test ! -d $(localedir)/$$p; then $(INSTALL) -d $(localedir)/$$p; fi;\ |
438 | if test ! -d $(localedir)/$$p/LC_MESSAGES; then $(INSTALL) -d $(localedir)/$$p/LC_MESSAGES; fi;\ | |
c7206e64 VS |
439 | $(INSTALL_DATA) $(top_srcdir)/locale/$$p.mo $(localedir)/$$p/LC_MESSAGES/wxstd.mo; \ |
440 | echo "$(INSTALL_DATA) $(top_srcdir)/locale/$$p.mo $(localedir)/$$p/LC_MESSAGES/wxstd.mo"; \ | |
f6bcfd97 BP |
441 | done |
442 | ||
e23081de RR |
443 | preinstall_res: $(build_libdir)/@WX_RESOURCES_MACOSX_COMPILED@ |
444 | @echo " " | |
445 | @echo " Installing wxWindows Mac resource ..." | |
446 | @echo " " | |
447 | @if test ! -d $(libdir); then $(INSTALL) -d $(libdir); fi | |
448 | $(INSTALL_PROGRAM) $(build_libdir)/@WX_RESOURCES_MACOSX_COMPILED@ $(libdir)/@WX_RESOURCES_MACOSX_COMPILED@ | |
449 | ||
3a922bb4 | 450 | preinstall_gl: $(build_libdir)/@WX_TARGET_LIBRARY_GL@ |
c661ecca RR |
451 | @echo " " |
452 | @echo " Installing wxWindows OpenGl add-on..." | |
453 | @echo " " | |
e09bdfbe | 454 | @if test ! -d $(libdir); then $(INSTALL) -d $(libdir); fi |
65eb9855 | 455 | @INSTALL_LIBRARY@ $(build_libdir)/@WX_TARGET_LIBRARY_GL@ $(libdir)/@WX_TARGET_LIBRARY_GL@ |
c661ecca | 456 | |
debc175a | 457 | install: @AFMINSTALL@ @WX_ALL_INSTALLED@ m4datainstall |
549c6f67 | 458 | @echo " " |
ad9edf45 | 459 | @echo " The installation of wxWindows is finished. On certain" |
c09ab26a | 460 | @echo " platforms (e.g. Linux) you'll now have to run ldconfig" |
4b6b4dfc | 461 | @echo " if you installed a shared library and also modify the" |
2224580a | 462 | @echo " LD_LIBRARY_PATH (or equivalent) environment variable." |
ad9edf45 | 463 | @echo " " |
2224580a | 464 | @echo " wxWindows comes with no guarantees and doesn't claim" |
ad9edf45 RR |
465 | @echo " to be suitable for any purpose." |
466 | @echo " " | |
467 | @echo " Read the wxWindows Licence on licencing conditions." | |
468 | @echo " " | |
469 | ||
ad9edf45 RR |
470 | uninstall: |
471 | @echo " " | |
472 | @echo " Uninstalling wxWindows..." | |
473 | @echo " " | |
474 | @echo " Removing library..." | |
8b17ba72 RR |
475 | @$(RM) $(libdir)/@WX_TARGET_LIBRARY@ |
476 | @$(RM) $(libdir)/@WX_LIBRARY_LINK1@ | |
477 | @$(RM) $(libdir)/@WX_LIBRARY_LINK2@ | |
bdad4e7e RR |
478 | @echo " Removing GL library..." |
479 | @$(RM) $(libdir)/@WX_TARGET_LIBRARY_GL@ | |
480 | @$(RM) $(libdir)/@WX_LIBRARY_LINK1_GL@ | |
481 | @$(RM) $(libdir)/@WX_LIBRARY_LINK2_GL@ | |
ad9edf45 | 482 | @echo " Removing helper files..." |
3a922bb4 | 483 | @$(RM) $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h |
8b17ba72 | 484 | @$(RM) $(bindir)/wx-config |
3a922bb4 | 485 | @$(RM) $(bindir)/wx@TOOLCHAIN_NAME@-config |
a6f3598d RR |
486 | @$(RM) $(datadir)/wx/afm/* |
487 | @$(RM) $(datadir)/wx/gs_afm/* | |
07eb77a6 RL |
488 | # FIXME: wxBase doesnt install these next 3 dirs. |
489 | @-rmdir $(datadir)/wx/gs_afm | |
490 | @-rmdir $(datadir)/wx/afm | |
491 | @-rmdir $(datadir)/wx | |
ad9edf45 RR |
492 | @echo " Removing headers..." |
493 | @list='$(HEADERS)'; for p in $$list; do \ | |
8b17ba72 | 494 | $(RM) $(includedir)/wx/$$p; \ |
ad9edf45 | 495 | done |
f6bcfd97 BP |
496 | @echo " Removing i18n files..." |
497 | @-for p in $(WX_LINGUAS); do \ | |
498 | $(RM) $(localedir)/$$p/LC_MESSAGES/wxstd.mo; \ | |
499 | rmdir $(localedir)/$$p/LC_MESSAGES; \ | |
500 | rmdir $(localedir)/$$p; \ | |
501 | done | |
ad9edf45 | 502 | @echo " Removing directories..." |
f6bcfd97 | 503 | @-rmdir $(localedir) |
3a922bb4 RL |
504 | @if test -d $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx; then rmdir $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx; fi |
505 | @if test -d $(libdir)/wx/include/@TOOLCHAIN_NAME@; then rmdir $(libdir)/wx/include/@TOOLCHAIN_NAME@; fi | |
ad9edf45 RR |
506 | @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi |
507 | @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi | |
508 | @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi | |
509 | @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi | |
a6f3598d | 510 | @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi |
ad9edf45 RR |
511 | @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi |
512 | @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi | |
513 | @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi | |
514 | @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi | |
515 | @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi | |
516 | ||
2224580a VZ |
517 | # this target should copy only the files common to really all ports (including |
518 | # wxBase) to the dist dir | |
519 | ALL_DIST: distclean | |
a4aad961 RR |
520 | mkdir _dist_dir |
521 | mkdir $(DISTDIR) | |
debc175a | 522 | cp $(WXDIR)/wxwin.m4 $(DISTDIR) |
b96848d3 | 523 | cp $(WXDIR)/aclocal.m4 $(DISTDIR) |
a4aad961 RR |
524 | cp $(WXDIR)/config.sub $(DISTDIR) |
525 | cp $(WXDIR)/config.guess $(DISTDIR) | |
526 | cp $(WXDIR)/install-sh $(DISTDIR) | |
527 | cp $(WXDIR)/mkinstalldirs $(DISTDIR) | |
528 | cp $(WXDIR)/wx-config.in $(DISTDIR) | |
529 | cp $(WXDIR)/setup.h.in $(DISTDIR) | |
6e7b6cc6 RR |
530 | cp $(WXDIR)/setup.h_vms $(DISTDIR) |
531 | cp $(WXDIR)/descrip.mms $(DISTDIR) | |
a4aad961 | 532 | cp $(WXDIR)/Makefile.in $(DISTDIR) |
84a32a77 | 533 | cp $(WXDIR)/wxBase.spec $(DISTDIR) |
a4aad961 RR |
534 | cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB |
535 | cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt | |
536 | cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt | |
32037c4e | 537 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt |
6e7b6cc6 RR |
538 | mkdir $(DISTDIR)/lib |
539 | cp $(WXDIR)/lib/vms.opt $(DISTDIR)/lib | |
540 | cp $(WXDIR)/lib/vms_gtk.opt $(DISTDIR)/lib | |
dc3d889d | 541 | mkdir $(DISTDIR)/src |
32037c4e | 542 | cp $(SRCDIR)/files.lst $(DISTDIR)/src/ |
dc3d889d VZ |
543 | mkdir $(DISTDIR)/src/zlib |
544 | cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib | |
545 | cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib | |
546 | cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib | |
547 | cp $(ZLIBDIR)/*.mms $(DISTDIR)/src/zlib | |
3a922bb4 | 548 | mkdir $(DISTDIR)/src/regex |
9bfaa55f | 549 | cp $(REGEXDIR)/*.h $(DISTDIR)/src/regex |
cb4a5a73 | 550 | cp $(REGEXDIR)/*.ih $(DISTDIR)/src/regex |
3a922bb4 | 551 | cp $(REGEXDIR)/*.c $(DISTDIR)/src/regex |
9bfaa55f RR |
552 | cp $(REGEXDIR)/Makefile $(DISTDIR)/src/regex |
553 | cp $(REGEXDIR)/COPYRIGHT $(DISTDIR)/src/regex | |
554 | cp $(REGEXDIR)/README $(DISTDIR)/src/regex | |
555 | cp $(REGEXDIR)/WHATSNEW $(DISTDIR)/src/regex | |
556 | cp $(REGEXDIR)/mkh $(DISTDIR)/src/regex | |
557 | cp $(REGEXDIR)/tests $(DISTDIR)/src/regex | |
2224580a VZ |
558 | |
559 | # this target is the common part of distribution script for all GUI toolkits, | |
560 | # but is not used when building wxBase distribution | |
561 | ALL_GUI_DIST: ALL_DIST | |
84a32a77 VZ |
562 | cp $(WXDIR)/configure.in $(DISTDIR) |
563 | cp $(WXDIR)/configure $(DISTDIR) | |
564 | cp $(DOCDIR)/readme.txt $(DISTDIR)/README.txt | |
565 | cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt | |
32037c4e VS |
566 | if test -f $(DOCDIR)/$(TOOLKITDIR)/changes.txt ; then \ |
567 | cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES-$(TOOLKIT).txt ; fi | |
568 | cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README-$(TOOLKIT).txt | |
a4aad961 RR |
569 | cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt |
570 | mkdir $(DISTDIR)/include | |
571 | mkdir $(DISTDIR)/include/wx | |
572 | mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR) | |
573 | mkdir $(DISTDIR)/include/wx/generic | |
574 | mkdir $(DISTDIR)/include/wx/html | |
a4aad961 | 575 | mkdir $(DISTDIR)/include/wx/protocol |
2224580a VZ |
576 | mkdir $(DISTDIR)/include/wx/unix |
577 | cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx | |
578 | cp $(INCDIR)/wx/*.inl $(DISTDIR)/include/wx | |
a4aad961 RR |
579 | cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx |
580 | cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic | |
581 | cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic | |
582 | cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html | |
583 | cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix | |
584 | cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol | |
4cb122de RR |
585 | mkdir $(DISTDIR)/src/common |
586 | mkdir $(DISTDIR)/src/generic | |
587 | mkdir $(DISTDIR)/src/html | |
588 | mkdir $(DISTDIR)/src/html/bitmaps | |
589 | mkdir $(DISTDIR)/src/$(TOOLKITDIR) | |
4cb122de RR |
590 | mkdir $(DISTDIR)/src/png |
591 | mkdir $(DISTDIR)/src/jpeg | |
1d62a8b4 | 592 | mkdir $(DISTDIR)/src/tiff |
c09ab26a | 593 | mkdir $(DISTDIR)/src/iodbc |
2224580a | 594 | mkdir $(DISTDIR)/src/unix |
4cb122de RR |
595 | cp $(SRCDIR)/*.in $(DISTDIR)/src |
596 | cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common | |
597 | cp $(COMMDIR)/*.c $(DISTDIR)/src/common | |
598 | cp $(COMMDIR)/*.inc $(DISTDIR)/src/common | |
599 | cp $(COMMDIR)/*.l $(DISTDIR)/src/common | |
600 | cp $(COMMDIR)/*.h $(DISTDIR)/src/common | |
601 | cp $(COMMDIR)/*.y $(DISTDIR)/src/common | |
6e7b6cc6 RR |
602 | cp $(COMMDIR)/*.mms $(DISTDIR)/src/common |
603 | cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix | |
604 | cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix | |
605 | cp $(UNIXDIR)/*.mms $(DISTDIR)/src/unix | |
4cb122de | 606 | cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic |
6e7b6cc6 | 607 | cp $(GENDIR)/*.mms $(DISTDIR)/src/generic |
4cb122de | 608 | cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html |
4cb122de | 609 | cp $(HTMLDIR)/bitmaps/*.xpm $(DISTDIR)/src/html/bitmaps |
4cb122de RR |
610 | cp $(PNGDIR)/*.h $(DISTDIR)/src/png |
611 | cp $(PNGDIR)/*.c $(DISTDIR)/src/png | |
612 | cp $(PNGDIR)/README $(DISTDIR)/src/png | |
4cb122de RR |
613 | cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg |
614 | cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg | |
615 | cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg | |
1d62a8b4 RR |
616 | cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff |
617 | cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff | |
618 | cp $(TIFFDIR)/README $(DISTDIR)/src/tiff | |
c09ab26a RR |
619 | cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc |
620 | cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc | |
621 | cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc | |
622 | cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc | |
623 | cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc | |
624 | cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc | |
625 | cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc | |
a4aad961 | 626 | |
2224580a | 627 | BASE_DIST: ALL_DIST |
84a32a77 VZ |
628 | # make --disable-gui the default |
629 | sed 's/DEFAULT_wxUSE_GUI=yes/DEFAULT_wxUSE_GUI=no/' \ | |
630 | $(WXDIR)/configure.in > $(DISTDIR)/configure.in | |
631 | sed 's/DEFAULT_wxUSE_GUI=yes/DEFAULT_wxUSE_GUI=no/' \ | |
632 | $(WXDIR)/configure > $(DISTDIR)/configure | |
633 | chmod +x $(DISTDIR)/configure | |
2224580a VZ |
634 | mkdir $(DISTDIR)/include |
635 | mkdir $(DISTDIR)/include/wx | |
636 | mkdir $(DISTDIR)/include/wx/protocol | |
637 | mkdir $(DISTDIR)/include/wx/unix | |
84a32a77 | 638 | mkdir $(DISTDIR)/include/wx/msw |
2224580a VZ |
639 | mkdir $(DISTDIR)/src/common |
640 | mkdir $(DISTDIR)/src/unix | |
32037c4e | 641 | mkdir $(DISTDIR)/src/msw |
3a922bb4 | 642 | cp @PORT_FILES@ $(DISTDIR) |
32037c4e VS |
643 | cp $(WXDIR)/src/wxBase*.dsp $(DISTDIR) |
644 | cp $(WXDIR)/src/wxBase*.dsw $(DISTDIR) | |
2224580a | 645 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt |
ed360bf9 | 646 | cp $(DOCDIR)/base/readme.txt $(DISTDIR)/README.txt |
2224580a | 647 | cp $(SRCDIR)/*.in $(DISTDIR)/src |
5a7faf1e VZ |
648 | cp $(WXDIR)/src/common/*.inc $(DISTDIR)/src/common |
649 | cp $(WXDIR)/src/common/base.rc $(DISTDIR)/src/common | |
650 | cp $(WXDIR)/src/common/unzip.h $(DISTDIR)/src/common | |
2224580a VZ |
651 | list='$(HEADERS)'; for p in $$list; do \ |
652 | cp $(WXDIR)/include/wx/$$p $(DISTDIR)/include/wx/$$p; \ | |
653 | done | |
654 | list='$(SOURCES)'; for p in $$list; do \ | |
655 | cp $(WXDIR)/src/$$p $(DISTDIR)/src/$$p; \ | |
656 | done | |
657 | ||
5a7faf1e VZ |
658 | mkdir $(DISTDIR)/samples |
659 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples | |
660 | cp $(SAMPDIR)/configure $(DISTDIR)/samples | |
661 | cp $(SAMPDIR)/configure.in $(DISTDIR)/samples | |
662 | ||
663 | mkdir $(DISTDIR)/samples/console | |
664 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console | |
665 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console | |
666 | cp $(SAMPDIR)/console/console.cpp $(DISTDIR)/samples/console | |
84a32a77 | 667 | cp $(SAMPDIR)/console/console.dsp $(DISTDIR)/samples/console |
5a7faf1e VZ |
668 | cp $(SAMPDIR)/console/testdata.fc $(DISTDIR)/samples/console |
669 | ||
2224580a | 670 | GTK_DIST: ALL_GUI_DIST |
9bfaa55f | 671 | cp $(WXDIR)/wxGTK.spec $(DISTDIR) |
a4aad961 | 672 | cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk |
4cb122de | 673 | cp $(INCDIR)/wx/gtk/*.xpm $(DISTDIR)/include/wx/gtk |
3a922bb4 | 674 | cp $(GTKDIR)/files.lst $(DISTDIR)/src/gtk |
4cb122de RR |
675 | cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk |
676 | cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk | |
677 | cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk | |
6e7b6cc6 RR |
678 | cp $(GTKDIR)/*.mms $(DISTDIR)/src/gtk |
679 | mkdir $(DISTDIR)/contrib | |
680 | cp -R $(WXDIR)/contrib $(DISTDIR) | |
a4aad961 | 681 | |
2224580a | 682 | MOTIF_DIST: ALL_GUI_DIST |
32037c4e | 683 | cp $(WXDIR)/wxMotif.spec $(DISTDIR) |
a4aad961 | 684 | cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif |
3a922bb4 | 685 | cp $(MOTIFDIR)/files.lst $(DISTDIR)/src/motif |
4cb122de | 686 | cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif |
32037c4e | 687 | cp $(MOTIFDIR)/*.c $(DISTDIR)/src/motif |
4cb122de RR |
688 | cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif |
689 | mkdir $(DISTDIR)/src/motif/xmcombo | |
690 | cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo | |
691 | cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo | |
692 | cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo | |
a4aad961 | 693 | |
c521c494 | 694 | MACX_DIST: ALL_GUI_DIST |
d15a8ad4 | 695 | cp $(INCDIR)/*.* $(DISTDIR)/include |
dd8914bc GD |
696 | cp $(INCDIR)/wx/mac/*.h $(DISTDIR)/include/wx/mac |
697 | cp $(MACDIR)/files.lst $(DISTDIR)/src/mac | |
698 | cp $(MACDIR)/*.cpp $(DISTDIR)/src/mac | |
699 | cp $(MACDIR)/*.c $(DISTDIR)/src/mac | |
2f53787c RR |
700 | cp $(MACDIR)/*.h $(DISTDIR)/src/mac |
701 | cp $(MACDIR)/*.r $(DISTDIR)/src/mac | |
dd8914bc GD |
702 | mkdir $(DISTDIR)/src/mac/morefile |
703 | cp $(MACDIR)/morefile/*.h $(DISTDIR)/src/mac/morefile | |
9bfaa55f | 704 | cp $(MACDIR)/morefile/*.c $(DISTDIR)/src/mac/morefile |
9bfaa55f RR |
705 | mkdir $(DISTDIR)/src/mac/macsock |
706 | cp $(MACDIR)/macsock/*.lib $(DISTDIR)/src/mac/macsock | |
b4085ce6 | 707 | |
2224580a | 708 | MSW_DIST: ALL_GUI_DIST |
4cb122de | 709 | cp $(WXDIR)/wxWINE.spec $(DISTDIR) |
3a922bb4 RL |
710 | mkdir $(DISTDIR)/include/wx/msw/ctl3d |
711 | mkdir $(DISTDIR)/include/wx/msw/gnuwin32 | |
712 | mkdir $(DISTDIR)/include/wx/msw/gnuwin32/gl | |
713 | mkdir $(DISTDIR)/include/wx/msw/ole | |
a4aad961 RR |
714 | cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw |
715 | cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw | |
716 | cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw | |
717 | cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw | |
718 | cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw | |
3a922bb4 RL |
719 | cp $(INCDIR)/wx/msw/ctl3d/*.h $(DISTDIR)/include/wx/msw/ctl3d |
720 | cp $(INCDIR)/wx/msw/gnuwin32/*.h $(DISTDIR)/include/wx/msw/gnuwin32 | |
721 | cp $(INCDIR)/wx/msw/gnuwin32/gl/*.h $(DISTDIR)/include/wx/msw/gnuwin32/gl | |
722 | cp $(INCDIR)/wx/msw/gnuwin32/gl/*.def $(DISTDIR)/include/wx/msw/gnuwin32/gl | |
723 | cp $(INCDIR)/wx/msw/ole/*.h $(DISTDIR)/include/wx/msw/ole | |
724 | ||
725 | mkdir $(DISTDIR)/src/msw/ole | |
726 | cp $(MSWDIR)/files.lst $(DISTDIR)/src/msw | |
4cb122de RR |
727 | cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw |
728 | cp $(MSWDIR)/*.c $(DISTDIR)/src/msw | |
729 | cp $(MSWDIR)/*.def $(DISTDIR)/src/msw | |
4cb122de RR |
730 | cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole |
731 | ||
7b7a7637 RL |
732 | UNIV_DIST: ALL_GUI_DIST |
733 | mkdir $(DISTDIR)/include/wx/univ | |
734 | mkdir $(DISTDIR)/src/univ | |
735 | mkdir $(DISTDIR)/src/univ/themes | |
736 | cp $(INCDIR)/wx/univ/*.h $(DISTDIR)/include/wx/univ | |
737 | cp $(SRCDIR)/univ/files.lst $(DISTDIR)/src/univ | |
738 | cp $(SRCDIR)/univ/*.cpp $(DISTDIR)/src/univ | |
739 | cp $(SRCDIR)/univ/themes/*.cpp $(DISTDIR)/src/univ/themes | |
740 | ||
2224580a | 741 | DEMOS_DIST: ALL_GUI_DIST |
dfd6b52f RR |
742 | mkdir $(DISTDIR)/demos |
743 | cp $(DEMODIR)/Makefile.in $(DISTDIR)/demos | |
cc977e5f RR |
744 | cp $(DEMODIR)/configure $(DISTDIR)/demos |
745 | cp $(DEMODIR)/configure.in $(DISTDIR)/demos | |
b4085ce6 | 746 | |
dfd6b52f RR |
747 | mkdir $(DISTDIR)/demos/bombs |
748 | cp $(DEMODIR)/bombs/Makefile.in $(DISTDIR)/demos/bombs | |
749 | cp $(DEMODIR)/bombs/makefile.unx $(DISTDIR)/demos/bombs | |
750 | cp $(DEMODIR)/bombs/*.cpp $(DISTDIR)/demos/bombs | |
751 | cp $(DEMODIR)/bombs/*.h $(DISTDIR)/demos/bombs | |
752 | cp $(DEMODIR)/bombs/*.xpm $(DISTDIR)/demos/bombs | |
753 | cp $(DEMODIR)/bombs/readme.txt $(DISTDIR)/demos/bombs | |
b4085ce6 | 754 | |
644deea4 GD |
755 | cp -R $(DEMODIR)/dbbrowse $(DISTDIR)/demos/dbbrowse |
756 | ||
dfd6b52f RR |
757 | mkdir $(DISTDIR)/demos/forty |
758 | cp $(DEMODIR)/forty/Makefile.in $(DISTDIR)/demos/forty | |
759 | cp $(DEMODIR)/forty/makefile.unx $(DISTDIR)/demos/forty | |
760 | cp $(DEMODIR)/forty/*.h $(DISTDIR)/demos/forty | |
761 | cp $(DEMODIR)/forty/*.cpp $(DISTDIR)/demos/forty | |
762 | cp $(DEMODIR)/forty/*.xpm $(DISTDIR)/demos/forty | |
763 | cp $(DEMODIR)/forty/*.xbm $(DISTDIR)/demos/forty | |
b4085ce6 | 764 | |
dfd6b52f RR |
765 | mkdir $(DISTDIR)/demos/life |
766 | mkdir $(DISTDIR)/demos/life/bitmaps | |
767 | cp $(DEMODIR)/life/Makefile.in $(DISTDIR)/demos/life | |
768 | cp $(DEMODIR)/life/makefile.unx $(DISTDIR)/demos/life | |
769 | cp $(DEMODIR)/life/*.cpp $(DISTDIR)/demos/life | |
770 | cp $(DEMODIR)/life/*.h $(DISTDIR)/demos/life | |
771 | cp $(DEMODIR)/life/*.xpm $(DISTDIR)/demos/life | |
491e9f50 | 772 | cp $(DEMODIR)/life/*.inc $(DISTDIR)/demos/life |
f6bcfd97 | 773 | cp $(DEMODIR)/life/*.lif $(DISTDIR)/demos/life |
dfd6b52f | 774 | cp $(DEMODIR)/life/bitmaps/*.xpm $(DISTDIR)/demos/life/bitmaps |
b4085ce6 | 775 | |
dfd6b52f RR |
776 | mkdir $(DISTDIR)/demos/poem |
777 | cp $(DEMODIR)/poem/Makefile.in $(DISTDIR)/demos/poem | |
88413fec | 778 | cp $(DEMODIR)/poem/makefile.unx $(DISTDIR)/demos/poem |
491e9f50 | 779 | cp $(DEMODIR)/poem/*.h $(DISTDIR)/demos/poem |
dfd6b52f RR |
780 | cp $(DEMODIR)/poem/*.cpp $(DISTDIR)/demos/poem |
781 | cp $(DEMODIR)/poem/*.xpm $(DISTDIR)/demos/poem | |
782 | cp $(DEMODIR)/poem/*.dat $(DISTDIR)/demos/poem | |
783 | cp $(DEMODIR)/poem/*.txt $(DISTDIR)/demos/poem | |
b4085ce6 | 784 | |
dfd6b52f RR |
785 | mkdir $(DISTDIR)/demos/fractal |
786 | cp $(DEMODIR)/fractal/Makefile.in $(DISTDIR)/demos/fractal | |
787 | cp $(DEMODIR)/fractal/makefile.unx $(DISTDIR)/demos/fractal | |
788 | cp $(DEMODIR)/fractal/*.cpp $(DISTDIR)/demos/fractal | |
b4085ce6 | 789 | |
2224580a | 790 | SAMPLES_DIST: ALL_GUI_DIST |
4cb122de RR |
791 | mkdir $(DISTDIR)/samples |
792 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples | |
2224580a VZ |
793 | cp $(SAMPDIR)/configure $(DISTDIR)/samples |
794 | cp $(SAMPDIR)/configure.in $(DISTDIR)/samples | |
c661ecca RR |
795 | |
796 | mkdir $(DISTDIR)/samples/calendar | |
797 | cp $(SAMPDIR)/calendar/Makefile.in $(DISTDIR)/samples/calendar | |
798 | cp $(SAMPDIR)/calendar/makefile.unx $(DISTDIR)/samples/calendar | |
799 | cp $(SAMPDIR)/calendar/*.cpp $(DISTDIR)/samples/calendar | |
800 | ||
4cb122de RR |
801 | mkdir $(DISTDIR)/samples/caret |
802 | cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret | |
c4fda16b | 803 | cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret |
4cb122de RR |
804 | cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret |
805 | cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret | |
c661ecca RR |
806 | |
807 | mkdir $(DISTDIR)/samples/checklst | |
808 | cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst | |
809 | cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst | |
810 | cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst | |
811 | cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst | |
6e7b6cc6 | 812 | cp $(SAMPDIR)/checklst/*.mms $(DISTDIR)/samples/checklst |
c661ecca | 813 | |
4cb122de RR |
814 | mkdir $(DISTDIR)/samples/config |
815 | cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config | |
c4fda16b | 816 | cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config |
4cb122de | 817 | cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config |
c661ecca | 818 | |
1e8d2f69 RR |
819 | mkdir $(DISTDIR)/samples/console |
820 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console | |
821 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console | |
822 | cp $(SAMPDIR)/console/*.cpp $(DISTDIR)/samples/console | |
c661ecca | 823 | |
4cb122de RR |
824 | mkdir $(DISTDIR)/samples/controls |
825 | mkdir $(DISTDIR)/samples/controls/icons | |
826 | cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls | |
c4fda16b | 827 | cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls |
4cb122de RR |
828 | cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls |
829 | cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls | |
6e7b6cc6 | 830 | cp $(SAMPDIR)/controls/*.mms $(DISTDIR)/samples/controls |
4cb122de | 831 | cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons |
c661ecca | 832 | |
79144b8a RR |
833 | mkdir $(DISTDIR)/samples/db |
834 | cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db | |
c4fda16b | 835 | cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db |
79144b8a RR |
836 | cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db |
837 | cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db | |
838 | cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db | |
c661ecca | 839 | |
641d87d8 RR |
840 | mkdir $(DISTDIR)/samples/dialogs |
841 | cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs | |
c4fda16b | 842 | cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs |
641d87d8 RR |
843 | cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs |
844 | cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs | |
845 | cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs | |
6e7b6cc6 | 846 | cp $(SAMPDIR)/dialogs/*.mms $(DISTDIR)/samples/dialogs |
c661ecca | 847 | |
641d87d8 RR |
848 | mkdir $(DISTDIR)/samples/dnd |
849 | cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd | |
c4fda16b | 850 | cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd |
4b59bea3 | 851 | cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd |
641d87d8 RR |
852 | cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd |
853 | cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd | |
854 | cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd | |
855 | cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd | |
c661ecca | 856 | |
641d87d8 RR |
857 | mkdir $(DISTDIR)/samples/docview |
858 | cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview | |
e9093718 | 859 | cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview |
641d87d8 RR |
860 | cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview |
861 | cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview | |
862 | cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview | |
c661ecca | 863 | |
641d87d8 RR |
864 | mkdir $(DISTDIR)/samples/docvwmdi |
865 | cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi | |
e9093718 | 866 | cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi |
641d87d8 RR |
867 | cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi |
868 | cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi | |
c661ecca RR |
869 | |
870 | mkdir $(DISTDIR)/samples/dragimag | |
871 | cp $(SAMPDIR)/dragimag/Makefile.in $(DISTDIR)/samples/dragimag | |
872 | cp $(SAMPDIR)/dragimag/makefile.unx $(DISTDIR)/samples/dragimag | |
873 | cp $(SAMPDIR)/dragimag/*.cpp $(DISTDIR)/samples/dragimag | |
874 | cp $(SAMPDIR)/dragimag/*.h $(DISTDIR)/samples/dragimag | |
875 | cp $(SAMPDIR)/dragimag/*.xpm $(DISTDIR)/samples/dragimag | |
876 | cp $(SAMPDIR)/dragimag/*.png $(DISTDIR)/samples/dragimag | |
877 | ||
641d87d8 RR |
878 | mkdir $(DISTDIR)/samples/drawing |
879 | cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing | |
e9093718 | 880 | cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing |
641d87d8 RR |
881 | cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing |
882 | cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing | |
b6fa52db | 883 | cp $(SAMPDIR)/drawing/*.bmp $(DISTDIR)/samples/drawing |
c661ecca | 884 | |
641d87d8 RR |
885 | mkdir $(DISTDIR)/samples/dynamic |
886 | cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic | |
e9093718 | 887 | cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic |
641d87d8 RR |
888 | cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic |
889 | cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic | |
c661ecca | 890 | |
16b0e4ac VZ |
891 | mkdir $(DISTDIR)/samples/erase |
892 | cp $(SAMPDIR)/erase/Makefile.in $(DISTDIR)/samples/erase | |
893 | cp $(SAMPDIR)/erase/makefile.unx $(DISTDIR)/samples/erase | |
894 | cp $(SAMPDIR)/erase/*.cpp $(DISTDIR)/samples/erase | |
895 | ||
896 | mkdir $(DISTDIR)/samples/event | |
897 | cp $(SAMPDIR)/event/Makefile.in $(DISTDIR)/samples/event | |
898 | cp $(SAMPDIR)/event/makefile.unx $(DISTDIR)/samples/event | |
899 | cp $(SAMPDIR)/event/*.cpp $(DISTDIR)/samples/event | |
900 | ||
88413fec RR |
901 | mkdir $(DISTDIR)/samples/exec |
902 | cp $(SAMPDIR)/exec/Makefile.in $(DISTDIR)/samples/exec | |
e893cd66 | 903 | cp $(SAMPDIR)/exec/makefile.unx $(DISTDIR)/samples/exec |
88413fec | 904 | cp $(SAMPDIR)/exec/*.cpp $(DISTDIR)/samples/exec |
c661ecca | 905 | |
1e8d2f69 RR |
906 | mkdir $(DISTDIR)/samples/font |
907 | cp $(SAMPDIR)/font/Makefile.in $(DISTDIR)/samples/font | |
908 | cp $(SAMPDIR)/font/makefile.unx $(DISTDIR)/samples/font | |
909 | cp $(SAMPDIR)/font/*.cpp $(DISTDIR)/samples/font | |
c661ecca | 910 | |
1e8d2f69 RR |
911 | mkdir $(DISTDIR)/samples/grid |
912 | cp $(SAMPDIR)/grid/Makefile.in $(DISTDIR)/samples/grid | |
913 | cp $(SAMPDIR)/grid/makefile.unx $(DISTDIR)/samples/grid | |
914 | cp $(SAMPDIR)/grid/*.cpp $(DISTDIR)/samples/grid | |
c661ecca | 915 | |
e9093718 RR |
916 | mkdir $(DISTDIR)/samples/help |
917 | mkdir $(DISTDIR)/samples/help/doc | |
918 | cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help | |
919 | cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help | |
920 | cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help | |
921 | cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help | |
922 | cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc | |
c661ecca | 923 | |
641d87d8 RR |
924 | mkdir $(DISTDIR)/samples/html |
925 | cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html | |
926 | mkdir $(DISTDIR)/samples/html/about | |
927 | cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about | |
928 | cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about | |
929 | mkdir $(DISTDIR)/samples/html/about/data | |
930 | cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data | |
931 | cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data | |
932 | mkdir $(DISTDIR)/samples/html/help | |
933 | cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help | |
934 | cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help | |
935 | mkdir $(DISTDIR)/samples/html/help/helpfiles | |
936 | cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles | |
fc9c7c09 RR |
937 | mkdir $(DISTDIR)/samples/html/helpview |
938 | cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview | |
939 | cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview | |
940 | cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview | |
641d87d8 RR |
941 | mkdir $(DISTDIR)/samples/html/printing |
942 | cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing | |
641d87d8 | 943 | cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing |
641d87d8 RR |
944 | cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing |
945 | mkdir $(DISTDIR)/samples/html/test | |
946 | cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test | |
947 | cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test | |
948 | cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test | |
949 | cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test | |
b6fa52db | 950 | cp $(SAMPDIR)/html/test/*.gif $(DISTDIR)/samples/html/test |
641d87d8 RR |
951 | cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test |
952 | cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test | |
953 | mkdir $(DISTDIR)/samples/html/virtual | |
954 | cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual | |
955 | cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual | |
956 | cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual | |
957 | mkdir $(DISTDIR)/samples/html/widget | |
958 | cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget | |
959 | cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget | |
960 | cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget | |
961 | mkdir $(DISTDIR)/samples/html/zip | |
962 | cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip | |
963 | cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip | |
964 | cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip | |
965 | cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip | |
c661ecca | 966 | |
641d87d8 RR |
967 | mkdir $(DISTDIR)/samples/image |
968 | cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image | |
e9093718 | 969 | cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image |
641d87d8 | 970 | cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image |
6e7b6cc6 | 971 | cp $(SAMPDIR)/image/*.mms $(DISTDIR)/samples/image |
641d87d8 | 972 | cp $(SAMPDIR)/image/horse.* $(DISTDIR)/samples/image |
1e8d2f69 | 973 | cp $(SAMPDIR)/image/smile.xbm $(DISTDIR)/samples/image |
ff7c6c9c | 974 | cp $(SAMPDIR)/image/smile.xpm $(DISTDIR)/samples/image |
e59a8895 | 975 | |
c09ab26a RR |
976 | mkdir $(DISTDIR)/samples/internat |
977 | mkdir $(DISTDIR)/samples/internat/de | |
978 | mkdir $(DISTDIR)/samples/internat/fr | |
d6e969f6 | 979 | mkdir $(DISTDIR)/samples/internat/ru |
c09ab26a | 980 | cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat |
e9093718 | 981 | cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat |
c09ab26a RR |
982 | cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat |
983 | cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat | |
984 | cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat | |
985 | cp $(SAMPDIR)/internat/*.po $(DISTDIR)/samples/internat | |
b6fa52db | 986 | cp $(SAMPDIR)/internat/fr/*.mo $(DISTDIR)/samples/internat/fr |
c09ab26a | 987 | cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de |
d6e969f6 | 988 | cp $(SAMPDIR)/internat/ru/*.mo $(DISTDIR)/samples/internat/ru |
c09ab26a | 989 | cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr |
b6fa52db | 990 | cp $(SAMPDIR)/internat/de/*.po $(DISTDIR)/samples/internat/de |
d6e969f6 | 991 | cp $(SAMPDIR)/internat/ru/*.po $(DISTDIR)/samples/internat/ru |
c661ecca RR |
992 | |
993 | mkdir $(DISTDIR)/samples/ipc | |
994 | cp $(SAMPDIR)/ipc/Makefile.in $(DISTDIR)/samples/ipc | |
e893cd66 | 995 | cp $(SAMPDIR)/ipc/makefile.unx $(DISTDIR)/samples/ipc |
c661ecca RR |
996 | cp $(SAMPDIR)/ipc/*.cpp $(DISTDIR)/samples/ipc |
997 | cp $(SAMPDIR)/ipc/*.h $(DISTDIR)/samples/ipc | |
998 | cp $(SAMPDIR)/ipc/*.xpm $(DISTDIR)/samples/ipc | |
999 | ||
ceded8b9 RL |
1000 | mkdir $(DISTDIR)/samples/joytest |
1001 | cp $(SAMPDIR)/joytest/Makefile.in $(DISTDIR)/samples/joytest | |
1002 | cp $(SAMPDIR)/joytest/makefile.unx $(DISTDIR)/samples/joytest | |
1003 | cp $(SAMPDIR)/joytest/*.cpp $(DISTDIR)/samples/joytest | |
1004 | cp $(SAMPDIR)/joytest/*.h $(DISTDIR)/samples/joytest | |
1005 | cp $(SAMPDIR)/joytest/*.wav $(DISTDIR)/samples/joytest | |
1006 | ||
641d87d8 RR |
1007 | mkdir $(DISTDIR)/samples/layout |
1008 | cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout | |
e9093718 | 1009 | cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout |
641d87d8 RR |
1010 | cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout |
1011 | cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout | |
c661ecca | 1012 | |
641d87d8 | 1013 | mkdir $(DISTDIR)/samples/listctrl |
e9093718 | 1014 | mkdir $(DISTDIR)/samples/listctrl/bitmaps |
641d87d8 | 1015 | cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl |
e9093718 | 1016 | cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl |
641d87d8 RR |
1017 | cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl |
1018 | cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl | |
1019 | cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl | |
d8d474af | 1020 | cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps |
c661ecca | 1021 | |
641d87d8 | 1022 | mkdir $(DISTDIR)/samples/mdi |
e9093718 | 1023 | mkdir $(DISTDIR)/samples/mdi/bitmaps |
641d87d8 | 1024 | cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi |
e9093718 | 1025 | cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi |
641d87d8 RR |
1026 | cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi |
1027 | cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi | |
1028 | cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi | |
d8d474af | 1029 | cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps |
c661ecca | 1030 | |
e9093718 RR |
1031 | mkdir $(DISTDIR)/samples/memcheck |
1032 | cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck | |
1033 | cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck | |
1034 | cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck | |
1035 | cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck | |
c661ecca | 1036 | |
e9093718 RR |
1037 | mkdir $(DISTDIR)/samples/menu |
1038 | cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu | |
1039 | cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu | |
1040 | cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu | |
c661ecca | 1041 | |
641d87d8 | 1042 | mkdir $(DISTDIR)/samples/minifram |
e9093718 | 1043 | mkdir $(DISTDIR)/samples/minifram/bitmaps |
641d87d8 | 1044 | cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram |
e9093718 | 1045 | cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram |
641d87d8 RR |
1046 | cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram |
1047 | cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram | |
1048 | cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram | |
d8d474af | 1049 | cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps |
c661ecca | 1050 | |
641d87d8 RR |
1051 | mkdir $(DISTDIR)/samples/minimal |
1052 | cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal | |
e9093718 | 1053 | cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal |
641d87d8 RR |
1054 | cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal |
1055 | cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal | |
6e7b6cc6 | 1056 | cp $(SAMPDIR)/minimal/*.mms $(DISTDIR)/samples/minimal |
c661ecca | 1057 | |
dfd6b52f RR |
1058 | mkdir $(DISTDIR)/samples/dialup |
1059 | cp $(SAMPDIR)/dialup/Makefile.in $(DISTDIR)/samples/dialup | |
1060 | cp $(SAMPDIR)/dialup/makefile.unx $(DISTDIR)/samples/dialup | |
1061 | cp $(SAMPDIR)/dialup/*.cpp $(DISTDIR)/samples/dialup | |
c661ecca | 1062 | |
f85afd4e MB |
1063 | mkdir $(DISTDIR)/samples/newgrid |
1064 | cp $(SAMPDIR)/newgrid/Makefile.in $(DISTDIR)/samples/newgrid | |
1e8d2f69 | 1065 | cp $(SAMPDIR)/newgrid/makefile.unx $(DISTDIR)/samples/newgrid |
f85afd4e MB |
1066 | cp $(SAMPDIR)/newgrid/*.cpp $(DISTDIR)/samples/newgrid |
1067 | cp $(SAMPDIR)/newgrid/*.h $(DISTDIR)/samples/newgrid | |
c661ecca | 1068 | |
641d87d8 RR |
1069 | mkdir $(DISTDIR)/samples/notebook |
1070 | cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook | |
1e8d2f69 | 1071 | cp $(SAMPDIR)/notebook/makefile.unx $(DISTDIR)/samples/notebook |
641d87d8 RR |
1072 | cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook |
1073 | cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook | |
c661ecca RR |
1074 | |
1075 | mkdir $(DISTDIR)/samples/opengl | |
1076 | cp $(SAMPDIR)/opengl/Makefile.in $(DISTDIR)/samples/opengl | |
1077 | mkdir $(DISTDIR)/samples/opengl/penguin | |
1078 | cp $(SAMPDIR)/opengl/penguin/Makefile.in $(DISTDIR)/samples/opengl/penguin | |
1079 | cp $(SAMPDIR)/opengl/penguin/makefile.unx $(DISTDIR)/samples/opengl/penguin | |
1080 | cp $(SAMPDIR)/opengl/penguin/*.cpp $(DISTDIR)/samples/opengl/penguin | |
1081 | cp $(SAMPDIR)/opengl/penguin/*.c $(DISTDIR)/samples/opengl/penguin | |
1082 | cp $(SAMPDIR)/opengl/penguin/*.h $(DISTDIR)/samples/opengl/penguin | |
1083 | cp $(SAMPDIR)/opengl/penguin/*.lwo $(DISTDIR)/samples/opengl/penguin | |
1084 | mkdir $(DISTDIR)/samples/opengl/cube | |
1085 | cp $(SAMPDIR)/opengl/cube/Makefile.in $(DISTDIR)/samples/opengl/cube | |
1086 | cp $(SAMPDIR)/opengl/cube/makefile.unx $(DISTDIR)/samples/opengl/cube | |
1087 | cp $(SAMPDIR)/opengl/cube/*.cpp $(DISTDIR)/samples/opengl/cube | |
1088 | cp $(SAMPDIR)/opengl/cube/*.h $(DISTDIR)/samples/opengl/cube | |
1089 | mkdir $(DISTDIR)/samples/opengl/isosurf | |
1090 | cp $(SAMPDIR)/opengl/isosurf/Makefile.in $(DISTDIR)/samples/opengl/isosurf | |
1091 | cp $(SAMPDIR)/opengl/isosurf/makefile.unx $(DISTDIR)/samples/opengl/isosurf | |
1092 | cp $(SAMPDIR)/opengl/isosurf/*.cpp $(DISTDIR)/samples/opengl/isosurf | |
1093 | cp $(SAMPDIR)/opengl/isosurf/*.h $(DISTDIR)/samples/opengl/isosurf | |
1094 | cp $(SAMPDIR)/opengl/isosurf/*.gz $(DISTDIR)/samples/opengl/isosurf | |
1095 | ||
79144b8a RR |
1096 | mkdir $(DISTDIR)/samples/png |
1097 | cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png | |
1e8d2f69 | 1098 | cp $(SAMPDIR)/png/makefile.unx $(DISTDIR)/samples/png |
79144b8a RR |
1099 | cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png |
1100 | cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png | |
1101 | cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png | |
c661ecca | 1102 | |
1e8d2f69 RR |
1103 | mkdir $(DISTDIR)/samples/printing |
1104 | cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing | |
1105 | cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing | |
1106 | cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing | |
1107 | cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing | |
1108 | cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing | |
1109 | cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing | |
c661ecca | 1110 | |
3fd528b9 RR |
1111 | mkdir $(DISTDIR)/samples/resource |
1112 | cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource | |
1e8d2f69 | 1113 | cp $(SAMPDIR)/resource/makefile.unx $(DISTDIR)/samples/resource |
3fd528b9 RR |
1114 | cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource |
1115 | cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource | |
1116 | cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource | |
c661ecca | 1117 | |
46132182 RR |
1118 | mkdir $(DISTDIR)/samples/rotate |
1119 | cp $(SAMPDIR)/rotate/Makefile.in $(DISTDIR)/samples/rotate | |
1120 | cp $(SAMPDIR)/rotate/makefile.unx $(DISTDIR)/samples/rotate | |
1121 | cp $(SAMPDIR)/rotate/*.cpp $(DISTDIR)/samples/rotate | |
1122 | cp $(SAMPDIR)/rotate/*.bmp $(DISTDIR)/samples/rotate | |
e59a8895 | 1123 | |
3fd528b9 RR |
1124 | mkdir $(DISTDIR)/samples/richedit |
1125 | cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit | |
e893cd66 | 1126 | cp $(SAMPDIR)/richedit/makefile.unx $(DISTDIR)/samples/richedit |
3fd528b9 RR |
1127 | cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit |
1128 | cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit | |
1129 | cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit | |
1130 | cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit | |
1131 | cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit | |
e59a8895 | 1132 | |
641d87d8 RR |
1133 | mkdir $(DISTDIR)/samples/proplist |
1134 | cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist | |
e893cd66 | 1135 | cp $(SAMPDIR)/proplist/makefile.unx $(DISTDIR)/samples/proplist |
641d87d8 RR |
1136 | cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist |
1137 | cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist | |
e59a8895 | 1138 | |
ba0e7d41 RR |
1139 | mkdir $(DISTDIR)/samples/propsize |
1140 | cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize | |
e893cd66 | 1141 | cp $(SAMPDIR)/propsize/makefile.unx $(DISTDIR)/samples/propsize |
ba0e7d41 RR |
1142 | cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize |
1143 | cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize | |
e59a8895 | 1144 | |
641d87d8 RR |
1145 | mkdir $(DISTDIR)/samples/sashtest |
1146 | cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest | |
e893cd66 | 1147 | cp $(SAMPDIR)/sashtest/makefile.unx $(DISTDIR)/samples/sashtest |
641d87d8 RR |
1148 | cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest |
1149 | cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest | |
e59a8895 | 1150 | |
641d87d8 RR |
1151 | mkdir $(DISTDIR)/samples/scroll |
1152 | cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll | |
1e8d2f69 | 1153 | cp $(SAMPDIR)/scroll/makefile.unx $(DISTDIR)/samples/scroll |
641d87d8 | 1154 | cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll |
e59a8895 | 1155 | |
d8d474af RR |
1156 | mkdir $(DISTDIR)/samples/scrollsub |
1157 | cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub | |
1e8d2f69 | 1158 | cp $(SAMPDIR)/scrollsub/makefile.unx $(DISTDIR)/samples/scrollsub |
d8d474af | 1159 | cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub |
e59a8895 | 1160 | |
c661ecca RR |
1161 | mkdir $(DISTDIR)/samples/sockets |
1162 | cp $(SAMPDIR)/sockets/Makefile.in $(DISTDIR)/samples/sockets | |
e893cd66 | 1163 | cp $(SAMPDIR)/sockets/makefile.unx $(DISTDIR)/samples/sockets |
c661ecca RR |
1164 | cp $(SAMPDIR)/sockets/*.cpp $(DISTDIR)/samples/sockets |
1165 | cp $(SAMPDIR)/sockets/*.xpm $(DISTDIR)/samples/sockets | |
1166 | ||
641d87d8 RR |
1167 | mkdir $(DISTDIR)/samples/splitter |
1168 | cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter | |
e893cd66 | 1169 | cp $(SAMPDIR)/splitter/makefile.unx $(DISTDIR)/samples/splitter |
641d87d8 | 1170 | cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter |
e59a8895 | 1171 | |
2286341c VZ |
1172 | mkdir $(DISTDIR)/samples/statbar |
1173 | cp $(SAMPDIR)/statbar/Makefile.in $(DISTDIR)/samples/statbar | |
e893cd66 | 1174 | cp $(SAMPDIR)/statbar/makefile.unx $(DISTDIR)/samples/statbar |
2286341c VZ |
1175 | cp $(SAMPDIR)/statbar/*.cpp $(DISTDIR)/samples/statbar |
1176 | cp $(SAMPDIR)/statbar/*.xpm $(DISTDIR)/samples/statbar | |
1177 | ||
641d87d8 RR |
1178 | mkdir $(DISTDIR)/samples/text |
1179 | cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text | |
1e8d2f69 | 1180 | cp $(SAMPDIR)/text/makefile.unx $(DISTDIR)/samples/text |
641d87d8 RR |
1181 | cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text |
1182 | cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text | |
e59a8895 | 1183 | |
641d87d8 RR |
1184 | mkdir $(DISTDIR)/samples/thread |
1185 | cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread | |
1e8d2f69 | 1186 | cp $(SAMPDIR)/thread/makefile.unx $(DISTDIR)/samples/thread |
641d87d8 | 1187 | cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread |
e59a8895 | 1188 | |
641d87d8 RR |
1189 | mkdir $(DISTDIR)/samples/toolbar |
1190 | cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar | |
e893cd66 | 1191 | cp $(SAMPDIR)/toolbar/makefile.unx $(DISTDIR)/samples/toolbar |
641d87d8 | 1192 | cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar |
641d87d8 | 1193 | cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar |
d8d474af RR |
1194 | mkdir $(DISTDIR)/samples/toolbar/bitmaps |
1195 | cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps | |
e59a8895 | 1196 | |
641d87d8 RR |
1197 | mkdir $(DISTDIR)/samples/treectrl |
1198 | cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl | |
e893cd66 | 1199 | cp $(SAMPDIR)/treectrl/makefile.unx $(DISTDIR)/samples/treectrl |
641d87d8 RR |
1200 | cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl |
1201 | cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl | |
1202 | cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl | |
c661ecca RR |
1203 | mkdir $(DISTDIR)/samples/treectrl/bitmaps |
1204 | cp $(SAMPDIR)/treectrl/bitmaps/*.bmp $(DISTDIR)/samples/treectrl/bitmaps | |
e59a8895 | 1205 | |
c661ecca RR |
1206 | mkdir $(DISTDIR)/samples/treelay |
1207 | cp $(SAMPDIR)/treelay/Makefile.in $(DISTDIR)/samples/treelay | |
1208 | cp $(SAMPDIR)/treelay/makefile.unx $(DISTDIR)/samples/treelay | |
1209 | cp $(SAMPDIR)/treelay/*.cpp $(DISTDIR)/samples/treelay | |
1210 | cp $(SAMPDIR)/treelay/*.h $(DISTDIR)/samples/treelay | |
e59a8895 | 1211 | |
641d87d8 RR |
1212 | mkdir $(DISTDIR)/samples/typetest |
1213 | cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest | |
e893cd66 | 1214 | cp $(SAMPDIR)/typetest/makefile.unx $(DISTDIR)/samples/typetest |
641d87d8 RR |
1215 | cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest |
1216 | cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest | |
1217 | cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest | |
e59a8895 | 1218 | |
641d87d8 RR |
1219 | mkdir $(DISTDIR)/samples/validate |
1220 | cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate | |
e893cd66 | 1221 | cp $(SAMPDIR)/validate/makefile.unx $(DISTDIR)/samples/validate |
641d87d8 RR |
1222 | cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate |
1223 | cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate | |
1224 | cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate | |
e59a8895 | 1225 | |
641d87d8 RR |
1226 | mkdir $(DISTDIR)/samples/wizard |
1227 | cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard | |
e893cd66 | 1228 | cp $(SAMPDIR)/wizard/makefile.unx $(DISTDIR)/samples/wizard |
641d87d8 RR |
1229 | cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard |
1230 | cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard | |
e59a8895 | 1231 | |
3a922bb4 RL |
1232 | mkdir $(DISTDIR)/samples/widgets |
1233 | mkdir $(DISTDIR)/samples/widgets/icons | |
1234 | cp $(SAMPDIR)/widgets/Makefile.in $(DISTDIR)/samples/widgets | |
9bfaa55f RR |
1235 | cp $(SAMPDIR)/widgets/*.cpp $(DISTDIR)/samples/widgets |
1236 | cp $(SAMPDIR)/widgets/*.h $(DISTDIR)/samples/widgets | |
1237 | cp $(SAMPDIR)/widgets/*.rc $(DISTDIR)/samples/widgets | |
3a922bb4 RL |
1238 | cp $(SAMPDIR)/widgets/icons/*.xpm $(DISTDIR)/samples/widgets/icons |
1239 | ||
2224580a | 1240 | UTILS_DIST: ALL_GUI_DIST |
39fc1a6a RL |
1241 | mkdir $(DISTDIR)/utils |
1242 | cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils | |
1243 | cp $(UTILSDIR)/configure $(DISTDIR)/utils | |
1244 | cp $(UTILSDIR)/configure.in $(DISTDIR)/utils | |
1245 | ||
1246 | mkdir $(DISTDIR)/utils/tex2rtf | |
1247 | mkdir $(DISTDIR)/utils/tex2rtf/src | |
1248 | cp $(UTILSDIR)/tex2rtf/*.in $(DISTDIR)/utils/tex2rtf | |
1249 | cp $(UTILSDIR)/tex2rtf/src/*.h $(DISTDIR)/utils/tex2rtf/src | |
1250 | cp $(UTILSDIR)/tex2rtf/src/*.in $(DISTDIR)/utils/tex2rtf/src | |
1251 | cp $(UTILSDIR)/tex2rtf/src/*.cpp $(DISTDIR)/utils/tex2rtf/src | |
1252 | cp $(UTILSDIR)/tex2rtf/src/tex2rtf.* $(DISTDIR)/utils/tex2rtf/src | |
1253 | ||
1254 | mkdir $(DISTDIR)/utils/makegen | |
1255 | mkdir $(DISTDIR)/utils/makegen/templates | |
1256 | cp $(UTILSDIR)/makegen/Makefile.in $(DISTDIR)/utils/makegen | |
1257 | cp $(UTILSDIR)/makegen/*.cpp $(DISTDIR)/utils/makegen | |
1258 | cp $(UTILSDIR)/makegen/templates/*.* $(DISTDIR)/utils/makegen/templates | |
bdad4e7e | 1259 | |
5d9fe089 RR |
1260 | mkdir $(DISTDIR)/utils/hhp2cached |
1261 | cp $(UTILSDIR)/hhp2cached/*.* $(DISTDIR)/utils/hhp2cached | |
1262 | ||
1263 | mkdir $(DISTDIR)/utils/HelpGen | |
1264 | mkdir $(DISTDIR)/utils/HelpGen/src | |
1265 | cp $(UTILSDIR)/HelpGen/Makefile.in $(DISTDIR)/utils/HelpGen | |
1266 | cp $(UTILSDIR)/HelpGen/src/*.* $(DISTDIR)/utils/HelpGen/src | |
1267 | ||
1268 | cp -R $(UTILSDIR)/dialoged $(DISTDIR)/utils/dialoged | |
1269 | ||
2224580a | 1270 | MISC_DIST: ALL_GUI_DIST |
a6f3598d RR |
1271 | mkdir $(DISTDIR)/misc |
1272 | mkdir $(DISTDIR)/misc/afm | |
1273 | cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm | |
1274 | mkdir $(DISTDIR)/misc/gs_afm | |
1275 | cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm | |
2224580a | 1276 | |
c7206e64 | 1277 | INTL_DIST: |
f6bcfd97 | 1278 | mkdir $(DISTDIR)/locale |
c7206e64 | 1279 | cp $(INTLDIR)/Makefile $(DISTDIR)/locale |
f6bcfd97 | 1280 | cp $(INTLDIR)/*.po $(DISTDIR)/locale |
c7206e64 | 1281 | -cp $(INTLDIR)/*.mo $(DISTDIR)/locale |
f6bcfd97 | 1282 | |
e4c4c1c6 RL |
1283 | MANUAL_DIST: |
1284 | mkdir $(DISTDIR)/docs | |
1285 | mkdir $(DISTDIR)/docs/latex | |
1286 | mkdir $(DISTDIR)/docs/latex/wx | |
1287 | cp $(DOCDIR)/latex/wx/*.tex $(DISTDIR)/docs/latex/wx | |
b36d8c8f | 1288 | cp $(DOCDIR)/latex/wx/*.inc $(DISTDIR)/docs/latex/wx |
e4c4c1c6 RL |
1289 | cp $(DOCDIR)/latex/wx/*.gif $(DISTDIR)/docs/latex/wx |
1290 | cp $(DOCDIR)/latex/wx/*.ini $(DISTDIR)/docs/latex/wx | |
1291 | cp $(DOCDIR)/latex/wx/*.bib $(DISTDIR)/docs/latex/wx | |
1292 | cp $(DOCDIR)/latex/wx/*.sty $(DISTDIR)/docs/latex/wx | |
1293 | ||
9b0326f7 RL |
1294 | # this target does not generate a complete wxPython dist, it only includes |
1295 | # those files needed for the Debian source package. | |
1296 | # see utils/wxPython/distrib for scripts to make a proper wxPython dist. | |
1297 | PYTHON_DIST: | |
f6bcfd97 BP |
1298 | mkdir $(DISTDIR)/wxPython |
1299 | mkdir $(DISTDIR)/wxPython/contrib | |
0b9ab0bd | 1300 | mkdir $(DISTDIR)/wxPython/contrib/dllwidget |
2226ead0 | 1301 | mkdir $(DISTDIR)/wxPython/contrib/gizmos |
f6bcfd97 BP |
1302 | mkdir $(DISTDIR)/wxPython/contrib/glcanvas |
1303 | mkdir $(DISTDIR)/wxPython/contrib/glcanvas/gtk | |
1304 | mkdir $(DISTDIR)/wxPython/contrib/ogl | |
1305 | mkdir $(DISTDIR)/wxPython/contrib/stc | |
f3507ce4 | 1306 | mkdir $(DISTDIR)/wxPython/contrib/stc/gtk |
3a922bb4 | 1307 | mkdir $(DISTDIR)/wxPython/contrib/xrc |
f6bcfd97 BP |
1308 | mkdir $(DISTDIR)/wxPython/demo |
1309 | mkdir $(DISTDIR)/wxPython/demo/bitmaps | |
1405f2dd | 1310 | mkdir $(DISTDIR)/wxPython/demo/bmp_source |
f6bcfd97 | 1311 | mkdir $(DISTDIR)/wxPython/demo/data |
1405f2dd | 1312 | mkdir $(DISTDIR)/wxPython/demo/dllwidget |
f6bcfd97 BP |
1313 | mkdir $(DISTDIR)/wxPython/src |
1314 | mkdir $(DISTDIR)/wxPython/src/gtk | |
1315 | mkdir $(DISTDIR)/wxPython/wxPython | |
1316 | mkdir $(DISTDIR)/wxPython/wxPython/lib | |
0b9ab0bd | 1317 | mkdir $(DISTDIR)/wxPython/wxPython/lib/PyCrust |
f6bcfd97 | 1318 | mkdir $(DISTDIR)/wxPython/wxPython/lib/editor |
3a922bb4 | 1319 | mkdir $(DISTDIR)/wxPython/wxPython/lib/mixins |
f6bcfd97 BP |
1320 | |
1321 | cp $(WXDIR)/wxPython/*.txt $(DISTDIR)/wxPython | |
050207ec RL |
1322 | cp $(WXDIR)/wxPython/*.py $(DISTDIR)/wxPython |
1323 | cp $(WXDIR)/wxPython/setup.cfg $(DISTDIR)/wxPython | |
1324 | cp $(WXDIR)/wxPython/MANIFEST.in $(DISTDIR)/wxPython | |
0b9ab0bd | 1325 | cp $(WXDIR)/wxPython/contrib/dllwidget/*.{py,cpp,h,i} $(DISTDIR)/wxPython/contrib/dllwidget |
2226ead0 | 1326 | cp $(WXDIR)/wxPython/contrib/gizmos/*.{py,cpp,i} $(DISTDIR)/wxPython/contrib/gizmos |
f6bcfd97 BP |
1327 | -cp $(WXDIR)/wxPython/contrib/glcanvas/* $(DISTDIR)/wxPython/contrib/glcanvas |
1328 | cp $(WXDIR)/wxPython/contrib/glcanvas/gtk/glcanvas.* $(DISTDIR)/wxPython/contrib/glcanvas/gtk | |
1329 | -cp $(WXDIR)/wxPython/contrib/ogl/* $(DISTDIR)/wxPython/contrib/ogl | |
1330 | -cp $(WXDIR)/wxPython/contrib/stc/* $(DISTDIR)/wxPython/contrib/stc | |
f3507ce4 | 1331 | -cp $(WXDIR)/wxPython/contrib/stc/gtk/* $(DISTDIR)/wxPython/contrib/stc/gtk |
3a922bb4 | 1332 | -cp $(WXDIR)/wxPython/contrib/xrc/xrc.* $(DISTDIR)/wxPython/contrib/xrc |
f6bcfd97 BP |
1333 | -cp $(WXDIR)/wxPython/demo/* $(DISTDIR)/wxPython/demo |
1334 | -cp $(WXDIR)/wxPython/demo/bitmaps/* $(DISTDIR)/wxPython/demo/bitmaps | |
1405f2dd | 1335 | -cp $(WXDIR)/wxPython/demo/bmp_source/* $(DISTDIR)/wxPython/demo/bmp_source |
f6bcfd97 | 1336 | -cp $(WXDIR)/wxPython/demo/data/* $(DISTDIR)/wxPython/demo/data |
1405f2dd RL |
1337 | -cp $(WXDIR)/wxPython/demo/dllwidget/Makefile $(DISTDIR)/wxPython/demo/dllwidget |
1338 | -cp $(WXDIR)/wxPython/demo/dllwidget/test_* $(DISTDIR)/wxPython/demo/dllwidget | |
f6bcfd97 BP |
1339 | -cp $(WXDIR)/wxPython/src/* $(DISTDIR)/wxPython/src |
1340 | cp $(WXDIR)/wxPython/src/gtk/*.py $(DISTDIR)/wxPython/src/gtk | |
1341 | cp $(WXDIR)/wxPython/src/gtk/*.cpp $(DISTDIR)/wxPython/src/gtk | |
1342 | cp $(WXDIR)/wxPython/wxPython/lib/*.py $(DISTDIR)/wxPython/wxPython/lib | |
0b9ab0bd | 1343 | cp $(WXDIR)/wxPython/wxPython/lib/PyCrust/*.py $(DISTDIR)/wxPython/wxPython/lib/PyCrust |
f6bcfd97 | 1344 | cp $(WXDIR)/wxPython/wxPython/lib/editor/*.py $(DISTDIR)/wxPython/wxPython/lib/editor |
3a922bb4 | 1345 | cp $(WXDIR)/wxPython/wxPython/lib/mixins/*.py $(DISTDIR)/wxPython/wxPython/lib/mixins |
9b0326f7 | 1346 | |
2224580a | 1347 | distclean: |
8b17ba72 | 1348 | $(RM) -r _dist_dir |
a4aad961 | 1349 | |
d6e969f6 VZ |
1350 | # VZ: the -only targets allow to do "make dist bzip-dist-only" without copying |
1351 | # the files twice | |
1352 | dist-only: | |
1353 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
16b0e4ac | 1354 | @cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE); |
d6e969f6 VZ |
1355 | @if test "$(USE_GUI)" = 1; then \ |
1356 | cd $(DISTDIR); \ | |
1357 | mv samples wxSamples-$(VER_SUFFIX); \ | |
1358 | echo "*** Creating wxSamples archive..."; \ | |
1359 | tar ch wxSamples-$(VER_SUFFIX) | gzip -f9 > ../../$(WXSAMPLES); \ | |
1360 | mv wxSamples-$(VER_SUFFIX) samples; \ | |
1361 | mv demos wxDemos-$(VER_SUFFIX); \ | |
1362 | echo "*** Creating wxDemos archive..."; \ | |
1363 | tar ch wxDemos-$(VER_SUFFIX) | gzip -f9 > ../../$(WXDEMOS); \ | |
1364 | mv wxDemos-$(VER_SUFFIX) demos; \ | |
1365 | fi | |
1366 | ||
2224580a VZ |
1367 | dist: @GUIDIST@ |
1368 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
16b0e4ac | 1369 | @cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE); |
2224580a VZ |
1370 | @if test "$(USE_GUI)" = 1; then \ |
1371 | cd $(DISTDIR); \ | |
31fe72b6 | 1372 | mv samples wxSamples-$(VER_SUFFIX); \ |
d6e969f6 | 1373 | echo "*** Creating wxSamples archive..."; \ |
31fe72b6 VZ |
1374 | tar ch wxSamples-$(VER_SUFFIX) | gzip -f9 > ../../$(WXSAMPLES); \ |
1375 | mv wxSamples-$(VER_SUFFIX) samples; \ | |
1376 | mv demos wxDemos-$(VER_SUFFIX); \ | |
d6e969f6 | 1377 | echo "*** Creating wxDemos archive..."; \ |
31fe72b6 VZ |
1378 | tar ch wxDemos-$(VER_SUFFIX) | gzip -f9 > ../../$(WXDEMOS); \ |
1379 | mv wxDemos-$(VER_SUFFIX) demos; \ | |
2224580a VZ |
1380 | fi |
1381 | ||
d6e969f6 VZ |
1382 | bzip-dist-only: |
1383 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
16b0e4ac | 1384 | @cd _dist_dir && tar ch $(DISTDIRNAME) | bzip2 -f9 > ../$(WXARCHIVE_BZIP); |
d6e969f6 VZ |
1385 | @if test "$(USE_GUI)" = 1; then \ |
1386 | cd $(DISTDIR); \ | |
1387 | mv samples wxSamples-${VER_SUFFIX}; \ | |
1388 | echo "*** Creating wxSamples archive..."; \ | |
1389 | tar ch wxSamples-${VER_SUFFIX} | bzip2 -f9 > ../../$(WXSAMPLES_BZIP); \ | |
1390 | mv wxSamples-${VER_SUFFIX} samples; \ | |
1391 | mv demos wxDemos-${VER_SUFFIX}; \ | |
1392 | echo "*** Creating wxDemos archive..."; \ | |
1393 | tar ch wxDemos-${VER_SUFFIX} | bzip2 -f9 > ../../$(WXDEMOS_BZIP); \ | |
1394 | mv wxDemos-${VER_SUFFIX} demos; \ | |
1395 | fi | |
16b0e4ac | 1396 | |
f6bcfd97 | 1397 | bzip-dist: @GUIDIST@ |
f6bcfd97 | 1398 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." |
16b0e4ac | 1399 | @cd _dist_dir && tar ch $(DISTDIRNAME) | bzip2 -f9 > ../$(WXARCHIVE_BZIP) |
f6bcfd97 BP |
1400 | @if test "$(USE_GUI)" = 1; then \ |
1401 | cd $(DISTDIR); \ | |
1402 | mv samples wxSamples; \ | |
1403 | tar ch wxSamples | bzip2 -f9 > ../../$(WXSAMPLES_BZIP); \ | |
1404 | mv wxSamples samples; \ | |
1405 | mv demos wxDemos; \ | |
1406 | tar ch wxDemos | bzip2 -f9 > ../../$(WXDEMOS_BZIP); \ | |
1407 | mv wxDemos demos; \ | |
1408 | fi | |
1409 | ||
3a922bb4 | 1410 | debian-dist: debian-native-dist debian-msw-dirs MSW_DIST |
e4c4c1c6 | 1411 | mkdir $(DISTDIR)/debian |
676b8fb6 | 1412 | -cp $(WXDIR)/debian/* $(DISTDIR)/debian |
e4c4c1c6 RL |
1413 | cp $(DOCDIR)/licence.txt $(DISTDIR)/docs |
1414 | cp $(DOCDIR)/licendoc.txt $(DISTDIR)/docs | |
1415 | cp $(DOCDIR)/preamble.txt $(DISTDIR)/docs | |
6be0044c | 1416 | rm -f $(DISTDIR)/*.spec |
3a922bb4 RL |
1417 | |
1418 | @# now prune away a lot of the crap included by using cp -R | |
1419 | @# in other dist targets. Ugly and hardly portable but it | |
1420 | @# will run on any Debian box and that's enough for now. | |
1421 | ||
655b7383 | 1422 | find $(DISTDIR) \( -name "CVS" -o -name ".cvsignore" -o -name "*.dsp" -o -name "*.dsw" -o -name "*.hh*" -o \ |
3a922bb4 RL |
1423 | \( -name "makefile.*" -a ! -name "makefile.unx" \) \) \ |
1424 | -print0 | xargs -0 rm -rf | |
1425 | ||
9b0326f7 RL |
1426 | rm -rf $(WXDIR)/../wxwindows$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER) |
1427 | mv $(DISTDIR) $(WXDIR)/../wxwindows$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER) | |
e4c4c1c6 | 1428 | |
7b7a7637 | 1429 | debian-native-dist: @GUIDIST@ UNIV_DIST MANUAL_DIST PYTHON_DIST |
3a922bb4 RL |
1430 | |
1431 | debian-msw-dirs: | |
1432 | mkdir $(DISTDIR)/include/wx/msw | |
1433 | mkdir $(DISTDIR)/src/msw | |
1434 | ||
1435 | ||
ad9edf45 | 1436 | clean: |
8b17ba72 | 1437 | $(RM) *.o |
5586805b | 1438 | $(RM) *.d |
8b17ba72 RR |
1439 | $(RM) parser.c |
1440 | $(RM) lexer.c | |
3a922bb4 RL |
1441 | $(RM) $(build_libdir)/lib* |
1442 | # Don't remove this lot, configure will reuse it | |
1443 | # if it's still good | |
1444 | # $(RM) -r $(build_libdir)/wx/* | |
ad9edf45 RR |
1445 | |
1446 | cleanall: clean | |
862fed93 RD |
1447 | |
1448 | ||
1449 | RPMTOP=_dist_dir/_rpm_top | |
1450 | ||
debc175a | 1451 | rpm: bzip-dist |
862fed93 RD |
1452 | @echo "*** Building RPMs ***" |
1453 | -mkdir $(RPMTOP) | |
1454 | -mkdir $(RPMTOP)/SOURCES | |
1455 | -mkdir $(RPMTOP)/SPECS | |
1456 | -mkdir $(RPMTOP)/BUILD | |
1457 | -mkdir $(RPMTOP)/RPMS | |
1458 | -mkdir $(RPMTOP)/SRPMS | |
debc175a | 1459 | cp -f $(WXARCHIVE_BZIP) $(RPMTOP)/SOURCES |
862fed93 RD |
1460 | rpm -ba --define "_topdir `pwd`/$(RPMTOP)" $(WXDIR)/wx$(TOOLKIT).spec |
1461 | mv -f `find $(RPMTOP) -name "wx$(TARGET)*.rpm"` . | |
3a922bb4 | 1462 |