1. make install/uninstall seems to work
[wxWidgets.git] / samples / Makefile.am
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
8 SUBDIRS = minimal \
9  @SAMPLES_SUBDIRS@
10
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!)
19 install-recursive:
20         @true
21
22 uninstall-recursive:
23         @true
24