summaryrefslogtreecommitdiff
path: root/cesar/ce/rx/cp/test/Makefile
blob: 223f46ca40e6c93119bdc9762d42e6ae1d0c4a68 (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
# Base of the project.
BASE = ../../../..

# Enable ECos.
ECOS = y

# Common includes.
INCLUDES = ce/rx/cp/test/override

# For host program.
TARGET_PROGRAMS = test_mme
HOST_PROGRAMS = test_mbox

# Test MME.
test_mme_SOURCES = test_mme.c stub.c
test_mme_MODULES = lib mac/common ce/rx/cp ce/common cp/msg/stub cp/sta/mgr \
		   cp/fsm/stub

# Test mailbox.
test_mbox_SOURCES = test_mbox.c stub_mbox.c
test_mbox_MODULES = lib mac/common ce/rx/cp ce/common cp/fsm/stub cp/msg/stub

# Remove sta.c to prevent multiple definition of cp_sta_get_peer.
cp_sta_mgr_MODULE_SOURCES = net.c net_list.c sta_mgr.c sta_own_data.c

# Include main Makefile.
include $(BASE)/common/make/top.mk