]>
Commit | Line | Data |
---|---|---|
ad9edf45 RR |
1 | # |
2 | # Makefile : Builds wxWindows samples for Unix. | |
3 | # | |
4 | ||
678b92a9 VZ |
5 | SAMPLES_SUBDIRS=@SAMPLES_SUBDIRS@ |
6 | ||
ad9edf45 | 7 | all: |
678b92a9 | 8 | @for d in $(SAMPLES_SUBDIRS); do (cd $$d && make); done |
ad9edf45 RR |
9 | |
10 | clean: | |
678b92a9 | 11 | @for d in $(SAMPLES_SUBDIRS); do (cd $$d && make clean); done |