summaryrefslogtreecommitdiff
path: root/cesar/lib/Module
blob: e57586f636fe15fdbc2647cc6723292bbb3bbf12 (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
SOURCES := crc.c dbg.c heap.c test.c blk.c slab.c list.c \
        aatree.c try.c fixed.c blk_table.c \
        swap.c read_word.c bitstream.c circular_buffer.c mbox.c \
        mac_lookup_table.c init.c rnd.c utils.c
ifeq ($(CONFIG_HEAP_SKEW),y)
SOURCES += skewheap.c
endif
ifeq ($(CONFIG_HEAP_LEFTIST),y)
SOURCES += leftheap.c
endif
ifeq ($(CONFIG_RESTRACK),y)
SOURCES += restrack.c
endif
ifeq ($(CONFIG_TRACE),y)
SOURCES += trace.c
endif
ifeq ($(CONFIG_PERF),y)
SOURCES += perf.c
endif
ifeq ($(CONFIG_STATS),y)
SOURCES += stats.c
endif
ifeq ($(CONFIG_RND_MT19937),y)
SOURCES += mt19937ar.c
endif
ifeq ($(CONFIG_RND_TT800),y)
SOURCES += tt800.c
endif
ifeq ($(CONFIG_SEQ_CHECK),y)
SOURCES += seq_check.c
endif