]> git.llucax.com Git - software/makeit.git/blobdiff - Toplevel.mak
Add Boost Software License Version 1.0 as LICENSE
[software/makeit.git] / Toplevel.mak
index bcf2b5662237e63aa0cbe12b526ccc0d0f3aa9c4..3d4f37d49fa43b4c855c61061459184fa5e6872a 100644 (file)
@@ -1,15 +1,20 @@
+# Copyright Leandro Lucarella 2006 - 2014
+# Distributed under the Boost Software License, Version 1.0
+# See the LICENSE file for details, or http://www.boost.org/LICENSE_1_0.txt
 
-# Project name
-P := remake
+ifndef Toplevel.mak.included
+Toplevel.mak.included := 1
+
+# Load top-level directory project configuration
+sinclude $T/Config.mak
+
+# Load top-level directory local configuration
+sinclude $T/Config.local.mak
 
 # Include the build system library
-include $T/Lib.mak
+include $T/Makeit.mak
 
 # Include the Build.mak for this directory
 include $T/Build.mak
 
-# Phony rule to make all the targets (sub-makefiles can append targets to build
-# to the $(all) variable).
-.PHONY: all
-all: $(all)
-
+endif