2003-08-07 13:10:04 +00:00
|
|
|
#
|
|
|
|
# Makefile : Builds wxWindows samples for Unix.
|
|
|
|
#
|
1999-08-12 19:24:39 +00:00
|
|
|
|
2003-08-07 13:10:04 +00:00
|
|
|
SAMPLES_SUBDIRS=@SAMPLES_SUBDIRS@
|
1999-11-04 16:52:23 +00:00
|
|
|
|
2017-08-15 17:16:27 +00:00
|
|
|
ALL_TARGETS := all clean distclean
|
1999-08-12 19:24:39 +00:00
|
|
|
|
2017-08-15 17:16:27 +00:00
|
|
|
$(ALL_TARGETS): $(SAMPLES_SUBDIRS)
|
2012-11-01 17:14:59 +00:00
|
|
|
|
2017-08-15 17:16:27 +00:00
|
|
|
# The use of both MAKECMDGOALS and .TARGETS here allows the same makefile to be
|
|
|
|
# used both with GNU make and BSD make: only one of these variables will be
|
|
|
|
# defined for the particular make program flavour.
|
|
|
|
$(SAMPLES_SUBDIRS):
|
|
|
|
$(MAKE) -C $@ $(MAKECMDGOALS) $(.TARGETS)
|
2012-11-01 17:14:59 +00:00
|
|
|
|
2017-08-15 17:16:27 +00:00
|
|
|
.PHONY: $(ALL_TARGETS) $(SAMPLES_SUBDIRS)
|