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

# Enable ECos.
ECOS = y

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

# Common modules.
common_MODULES = ce/rx ce/rx/cp ce/common \
		 ce/rx/bitloading/fsm \
		 ce/rx/bitloading \
		 lib \
		 mac/common cp/msg/stub \
		 mac/sar/stub cp/sta/mgr cp/fsm/stub cp/cco/action/stub \
		 cp/sta/core/stub cl/stub bsu/stub


# Override sources for BL (we only want our stubbed handle event for the FSM).
ce_rx_bitloading_fsm_MODULE_SOURCES =

# Program list.
TARGET_PROGRAMS = test_rx

# Test CE RX.
test_rx_SOURCES = test_rx.c pbproc_stub.c
test_rx_MODULES = $(common_MODULES)
test_rx_CONFIG_MODULES = mac/pbproc mac/sar
# Include main Makefile.
include $(BASE)/common/make/top.mk