From 066f608c84bdf31cc92121084b25f97f74aea282 Mon Sep 17 00:00:00 2001 From: Vladimir Burian Date: Sat, 9 Apr 2011 21:03:49 +0200 Subject: [PATCH] Initialized directory of 'cmdproc_test' project. Compiling of this test project is now possible. --- software/msp430-virtex2-cmdproc_test/Makefile | 15 +++++++++++++++ software/msp430-virtex2-cmdproc_test/Makefile.omk | 6 ++++++ .../msp430-virtex2-cmdproc_test/Makefile.rules | 1 + software/msp430-virtex2-cmdproc_test/arch | 1 + software/msp430-virtex2-cmdproc_test/board | 1 + software/msp430-virtex2-cmdproc_test/cmdproc | 1 + .../msp430-virtex2-cmdproc_test/config.target | 1 + software/msp430-virtex2-cmdproc_test/misc | 1 + 8 files changed, 27 insertions(+) create mode 100644 software/msp430-virtex2-cmdproc_test/Makefile create mode 100644 software/msp430-virtex2-cmdproc_test/Makefile.omk create mode 120000 software/msp430-virtex2-cmdproc_test/Makefile.rules create mode 120000 software/msp430-virtex2-cmdproc_test/arch create mode 120000 software/msp430-virtex2-cmdproc_test/board create mode 120000 software/msp430-virtex2-cmdproc_test/cmdproc create mode 120000 software/msp430-virtex2-cmdproc_test/config.target create mode 120000 software/msp430-virtex2-cmdproc_test/misc diff --git a/software/msp430-virtex2-cmdproc_test/Makefile b/software/msp430-virtex2-cmdproc_test/Makefile new file mode 100644 index 0000000..cafc99f --- /dev/null +++ b/software/msp430-virtex2-cmdproc_test/Makefile @@ -0,0 +1,15 @@ +# Generic directory or leaf node makefile for OCERA make framework + +ifndef MAKERULES_DIR +MAKERULES_DIR := $(shell ( old_pwd="" ; while [ ! -e Makefile.rules ] ; do if [ "$$old_pwd" = `pwd` ] ; then exit 1 ; else old_pwd=`pwd` ; cd -L .. 2>/dev/null ; fi ; done ; pwd ) ) +endif + +ifeq ($(MAKERULES_DIR),) +all : default +.DEFAULT:: + @echo -e "\nThe Makefile.rules has not been found in this or partent directory\n" +else +include $(MAKERULES_DIR)/Makefile.rules +endif + +# DO NOT DELETE diff --git a/software/msp430-virtex2-cmdproc_test/Makefile.omk b/software/msp430-virtex2-cmdproc_test/Makefile.omk new file mode 100644 index 0000000..221ef9f --- /dev/null +++ b/software/msp430-virtex2-cmdproc_test/Makefile.omk @@ -0,0 +1,6 @@ +# -*- makefile -*- + +SUBDIRS = arch board cmdproc misc + +-include $(SOURCES_DIR)/Makefile.omk-additional + diff --git a/software/msp430-virtex2-cmdproc_test/Makefile.rules b/software/msp430-virtex2-cmdproc_test/Makefile.rules new file mode 120000 index 0000000..afb2930 --- /dev/null +++ b/software/msp430-virtex2-cmdproc_test/Makefile.rules @@ -0,0 +1 @@ +../Makefile.rules \ No newline at end of file diff --git a/software/msp430-virtex2-cmdproc_test/arch b/software/msp430-virtex2-cmdproc_test/arch new file mode 120000 index 0000000..90fe9ab --- /dev/null +++ b/software/msp430-virtex2-cmdproc_test/arch @@ -0,0 +1 @@ +../submodule/sysless/arch/ \ No newline at end of file diff --git a/software/msp430-virtex2-cmdproc_test/board b/software/msp430-virtex2-cmdproc_test/board new file mode 120000 index 0000000..2ba265e --- /dev/null +++ b/software/msp430-virtex2-cmdproc_test/board @@ -0,0 +1 @@ +../submodule/sysless/board/ \ No newline at end of file diff --git a/software/msp430-virtex2-cmdproc_test/cmdproc b/software/msp430-virtex2-cmdproc_test/cmdproc new file mode 120000 index 0000000..974ac28 --- /dev/null +++ b/software/msp430-virtex2-cmdproc_test/cmdproc @@ -0,0 +1 @@ +../submodule/sysless/libs4c/cmdproc/ \ No newline at end of file diff --git a/software/msp430-virtex2-cmdproc_test/config.target b/software/msp430-virtex2-cmdproc_test/config.target new file mode 120000 index 0000000..4c84240 --- /dev/null +++ b/software/msp430-virtex2-cmdproc_test/config.target @@ -0,0 +1 @@ +../submodule/sysless/board/msp430/virtex2/config/config.cmdproc_test \ No newline at end of file diff --git a/software/msp430-virtex2-cmdproc_test/misc b/software/msp430-virtex2-cmdproc_test/misc new file mode 120000 index 0000000..a4be88f --- /dev/null +++ b/software/msp430-virtex2-cmdproc_test/misc @@ -0,0 +1 @@ +../submodule/sysless/libs4c/misc/ \ No newline at end of file -- 2.39.2