~brian-sidebotham/wxwidgets-cmake/wxpython-2.9.4

« back to all changes in this revision

Viewing changes to samples/Makefile.in

  • Committer: Brian Sidebotham
  • Date: 2013-08-03 14:30:08 UTC
  • Revision ID: brian.sidebotham@gmail.com-20130803143008-c7806tkych1tp6fc
Initial import into Bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Makefile : Builds wxWindows samples for Unix.
 
3
#
 
4
 
 
5
SAMPLES_SUBDIRS=@SAMPLES_SUBDIRS@
 
6
 
 
7
all:
 
8
        @for d in $(SAMPLES_SUBDIRS); do (cd $$d && $(MAKE)); done
 
9
 
 
10
clean:
 
11
        @for d in $(SAMPLES_SUBDIRS); do (cd $$d && $(MAKE) clean); done