summaryrefslogtreecommitdiff
path: root/cesar/lib/Module
blob: 5c7e1dbc952558ddf60503faffa70c2d5b19b519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
SOURCES := mt19937ar.c crc.c dbg.c heap.c test.c blk.c slab.c list.c \
        aatree.c try.c fixed.c \
        swap.c read_word.c bitstream.c circular_buffer.c mbox.c \
        mac_lookup_table.c init.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