summaryrefslogtreecommitdiff
path: root/test_general/ecos/Makefile
blob: 4fc2467dc15368c7eb11596cbea2acdfb9d4dedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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