summaryrefslogtreecommitdiff
path: root/core/mk/target-mcu.mk
diff options
context:
space:
mode:
Diffstat (limited to 'core/mk/target-mcu.mk')
-rw-r--r--core/mk/target-mcu.mk33
1 files changed, 33 insertions, 0 deletions
diff --git a/core/mk/target-mcu.mk b/core/mk/target-mcu.mk
new file mode 100644
index 0000000..7e7ace4
--- /dev/null
+++ b/core/mk/target-mcu.mk
@@ -0,0 +1,33 @@
+################################################################################
+# Embtoolkit
+# Copyright(C) 2009-2012 Abdoulaye Walsimou GAYE <awg@embtoolkit.org>.
+#
+# This program is free software; you can distribute it and/or modify it
+# under the terms of the GNU General Public License
+# (Version 2 or later) published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+################################################################################
+#
+# \file target-mcu.mk
+# \brief target-mcu.mk of Embtoolkit.
+# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
+# \date May 2009
+################################################################################
+
+# ARM
+ifeq ($(CONFIG_EMBTK_ARCH_ARM),y)
+include core/mk/arch/arm/arm.mk
+endif
+
+# MIPS
+ifeq ($(CONFIG_EMBTK_ARCH_MIPS),y)
+include core/mk/arch/mips/mips.mk
+endif