summaryrefslogtreecommitdiff
path: root/cesar/ce/rx/test/Makefile
blob: 03ad4e7250295f01e6d245405d2cd6bac7898efb (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
# 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/av/sta/mgr cp/av/fsm/stub cp/av/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 cp

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