]> git.saurik.com Git - wxWidgets.git/blame - samples/Makefile.am
Motif compile fixes
[wxWidgets.git] / samples / Makefile.am
CommitLineData
88ac883a
VZ
1# The makefile for wxWindows samples: only one sample is always built, the
2# minimal one, the other samples to build are determined at configure time
3# because many of them require the library to have some features compiled into
4# it)
5#
6# $Id$
7
8SUBDIRS = minimal \
9 @SAMPLES_SUBDIRS@
ff684c98 10
c7114f59
VZ
11# do nothing during "make [un]install" in the samples subdirectory (can't
12# override install because install-recursive is its dependency which is still
13# built)
14#
15# this results in warnings from make about "overriding commands for garget
16# install-recursive", but it's more than compensated by the time we gain by not
17# entering/leaving all samples directories (but if somebody has a better
18# solution it would be welcome!)
ff684c98
VZ
19install-recursive:
20 @true
21
c7114f59
VZ
22uninstall-recursive:
23 @true
24