aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/custom/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/hybrid/custom/makefile')
-rw-r--r--dist/examples/cxx/hybrid/custom/makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/dist/examples/cxx/hybrid/custom/makefile b/dist/examples/cxx/hybrid/custom/makefile
new file mode 100644
index 0000000..029327d
--- /dev/null
+++ b/dist/examples/cxx/hybrid/custom/makefile
@@ -0,0 +1,25 @@
+root := ../../../..
+
+include $(root)/build/config.make
+
+dirs :=
+
+ifeq ($(XSDE_IOSTREAM),y)
+ifeq ($(XSDE_EXCEPTIONS),y)
+
+dirs += wildcard
+
+endif
+endif
+
+.PHONY: all $(dirs)
+
+all: $(dirs)
+
+$(dirs):
+ @$(MAKE) -C $@ $(MAKECMDGOALS)
+
+makefile: ;
+%.make:: ;
+
+%:: $(dirs) ;