Subversion Repositories shark

Rev

Rev 45 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
# The List-based Memory Manager (from OSKit!)
2
 
3
ifndef BASE
4
BASE=../..
5
endif
45 pj 6
 
2 pj 7
include $(BASE)/config/config.mk
8
 
9
LIBRARY       = mem
10
 
11
OBJS_PATH     = $(BASE)/kernel/mem
12
 
13
#
14
# Object files
15
#
16
 
17
OBJS =  addfree.o        \
18
        addregio.o       \
19
        alloc.o          \
20
        alloc_al.o       \
21
        alloc_ge.o       \
22
        alloc_pa.o       \
23
        avail.o          \
24
        avail_in.o       \
25
        dump.o           \
26
        findfree.o       \
27
        free.o           \
28
        freepage.o       \
29
        init.o           \
30
        removefr.o       \
31
        stats.o
32
 
33
include $(BASE)/config/lib.mk
34