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