From f729a68a498359fc42504676612fd9b03cbdeb77 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 7 May 2010 08:59:59 +0200 Subject: Add top-level makefile --- makefile | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..00a6adb --- /dev/null +++ b/makefile @@ -0,0 +1,35 @@ +# file : makefile +# author : Boris Kolpackov +# copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC +# license : GNU GPL v2; see accompanying LICENSE file + +include $(dir $(lastword $(MAKEFILE_LIST)))build/bootstrap.make + +default := $(out_base)/ +test := $(out_base)/.test +install := $(out_base)/.install +clean := $(out_base)/.clean +cleandoc := $(out_base)/.cleandoc + +$(default): $(out_base)/odb/ + + +# Test. +# +$(test): $(out_base)/tests/.test + + +# Install. +# +$(install): $(out_base)/odb/.install + + +# Clean. +# +$(clean): $(out_base)/odb/.clean + +$(cleandoc): $(out_base)/doc/.cleandoc + +$(call include,$(bld_root)/install.make) + +$(call import,$(src_base)/odb/makefile) -- cgit v1.1