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