aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/parser/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-03-02 12:14:54 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-03-02 12:14:54 +0200
commit6c63b913179127e09ed7d9da8920493ccceec6ce (patch)
tree95684b51b4ab60e6468a592a53e33c2cf00027ab /dist/examples/cxx/parser/makefile
parent3fd3cfc36784be43f545f2f0973e3dc58f475996 (diff)
Add make support for creating binary distributions
Two new make targets, dist and dist-win, were added that allow one to create a binary distribution from the current build. The dist target creates a UNIX distribution while dist-win -- Windows. The simplified build systems for the runtime library and examples that were kept separately are now part of the project (the dist/ subdirectory).
Diffstat (limited to 'dist/examples/cxx/parser/makefile')
-rw-r--r--dist/examples/cxx/parser/makefile53
1 files changed, 53 insertions, 0 deletions
diff --git a/dist/examples/cxx/parser/makefile b/dist/examples/cxx/parser/makefile
new file mode 100644
index 0000000..c286089
--- /dev/null
+++ b/dist/examples/cxx/parser/makefile
@@ -0,0 +1,53 @@
+root := ../../..
+
+include $(root)/build/config.make
+
+dirs :=
+
+ifneq ($(XSDE_REUSE_STYLE),none)
+dirs += generated
+endif
+
+ifeq ($(XSDE_STL),y)
+ifeq ($(XSDE_IOSTREAM),y)
+ifeq ($(XSDE_EXCEPTIONS),y)
+
+dirs += hello
+
+ifneq ($(XSDE_REUSE_STYLE),none)
+dirs += library multiroot
+
+ifeq ($(XSDE_POLYMORPHIC),y)
+dirs += polymorphism polyroot
+endif
+
+endif
+
+ifeq ($(XSDE_REUSE_STYLE),tiein)
+dirs += mixed wildcard
+endif
+
+endif
+endif
+endif
+
+ifeq ($(XSDE_STL),n)
+ifeq ($(XSDE_EXCEPTIONS),n)
+ifneq ($(XSDE_REUSE_STYLE),none)
+dirs += minimal
+endif
+endif
+endif
+
+
+.PHONY: all $(dirs)
+
+all: $(dirs)
+
+$(dirs):
+ @$(MAKE) -C $@ $(MAKECMDGOALS)
+
+makefile: ;
+%.make:: ;
+
+%:: $(dirs) ;