summaryrefslogtreecommitdiff
path: root/test_general/ecos/Makefile
diff options
context:
space:
mode:
authorsave2008-02-19 17:23:23 +0000
committersave2008-02-19 17:23:23 +0000
commit07e43c7c55ff54f83acc4e1dde05404d7d73024c (patch)
tree98b2dd83af1fbb0ac3405d49a00b1a4b780709aa /test_general/ecos/Makefile
parentce5dfa0eae12963de9dfdcedb1a33f029a92df3a (diff)
Added ecos tests for our platforms
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@1440 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'test_general/ecos/Makefile')
-rw-r--r--test_general/ecos/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/test_general/ecos/Makefile b/test_general/ecos/Makefile
new file mode 100644
index 0000000000..4fc2467dc1
--- /dev/null
+++ b/test_general/ecos/Makefile
@@ -0,0 +1,41 @@
+BASE = ../..
+
+ECOS = y
+TARGET = sparc
+
+TARGET_PROGRAMS = bentry hello_world one_thread two_thread threaddelay exception interrupt timer_int pci_int mesbox mutex
+
+bentry_SOURCES = bentry.c
+bentry_MODULES = lib
+
+hello_world_SOURCES = hello_world.c
+hello_world_MODULES = lib host
+
+interrupt_SOURCES = interrupt.c
+interrupt_MODULES = lib host
+
+timer_int_SOURCES = timer_int.c
+timer_int_MODULES = lib host
+
+pci_int_SOURCES = pci_int.c
+pci_int_MODULES = lib host
+
+exception_SOURCES = exception.c
+exception_MODULES = lib host
+
+one_thread_SOURCES = one_thread.c
+one_thread_MODULES = lib host
+
+two_thread_SOURCES = two_thread.c
+two_thread_MODULES = lib host
+
+threaddelay_SOURCES = threaddelay.c
+threaddelay_MODULES = lib host
+
+mesbox_SOURCES = mesbox.c
+mesbox_MODULES = lib host
+
+mutex_SOURCES = mutex.c
+mutex_MODULES = lib host
+
+include $(BASE)/common/make/top.mk