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

# Common includes.
INCLUDES = ce/tx/test/override cp/sta/core/stub

# Common modules.
common_MODULES = lib mac/common ce/tx \
		cl/stub cp/sta/core/stub mac/sar/stub \
		ce/common cp/msg/stub bsu/stub cp/av/fsm/stub

# For host program.
HOST_PROGRAMS = test_expiration test_mme test_tm

test_expiration_SOURCES = test_expiration.c mme.c cp_sta_mgr_stub.c
test_expiration_MODULES = $(common_MODULES)
test_expiration_CONFIG_MODULES = cp

test_mme_SOURCES = test_mme.c mme.c cp_sta_mgr_stub.c
test_mme_MODULES = $(common_MODULES)
test_mme_CONFIG_MODULES = cp

test_tm_SOURCES = test_tm.c cp_sta_mgr_stub.c
test_tm_MODULES = $(common_MODULES)
test_tm_CONFIG_MODULES = cp

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