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