aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hello/hello/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cxx/hello/hello/makefile')
-rw-r--r--examples/cxx/hello/hello/makefile71
1 files changed, 71 insertions, 0 deletions
diff --git a/examples/cxx/hello/hello/makefile b/examples/cxx/hello/hello/makefile
new file mode 100644
index 0000000..3fc4826
--- /dev/null
+++ b/examples/cxx/hello/hello/makefile
@@ -0,0 +1,71 @@
+# file : examples/cxx/hello/hello/makefile
+# author : Boris Kolpackov <boris@codesynthesis.com>
+# copyright : Copyright (c) 2004-2010 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+include $(dir $(lastword $(MAKEFILE_LIST)))build/bootstrap.make
+
+cxx_tun := hello.cxx
+cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o))
+cxx_od := $(cxx_obj:.o=.o.d)
+
+hello := $(out_base)/hello
+clean := $(out_base)/.clean
+install := $(out_base)/.install
+
+
+# Secure default target.
+#
+#$(hello):
+
+
+# Import information about libhello.
+#
+$(call import,\
+ $(scf_root)/import/libhello/stub.make,\
+ l: hello.l,cpp-options: hello.l.cpp-options)
+
+
+# Build.
+#
+$(hello): $(cxx_obj) $(hello.l)
+
+$(cxx_obj) $(cxx_od): $(hello.l.cpp-options)
+
+$(call -include,$(cxx_od))
+
+
+# Clean.
+#
+.PHONY: $(clean)
+
+$(clean): $(hello).o.clean \
+ $(addsuffix .cxx.clean,$(cxx_obj)) \
+ $(addsuffix .cxx.clean,$(cxx_od))
+
+
+# Install.
+#
+.PHONY: $(install)
+
+$(install): $(hello)
+ $(call install-exec,$<,$(install_bin_dir)/hello)
+
+# Aliases.
+#
+ifdef %interactive%
+
+.PHONY: clean install
+
+clean: $(clean)
+install: $(install)
+
+endif
+
+
+# How to.
+#
+$(call include,$(bld_root)/cxx/o-e.make)
+$(call include,$(bld_root)/cxx/cxx-o.make)
+$(call include,$(bld_root)/cxx/cxx-d.make)
+$(call include,$(bld_root)/install.make)