Subversion Repositories shark

Rev

Rev 2 | Rev 45 | Go to most recent revision | 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
6
include $(BASE)/config/config.mk
7
 
8
LIBRARY       = mem
9
 
10
OBJS_PATH     = $(BASE)/kernel/mem
11
 
12
#
13
# Object files
14
#
15
 
16
OBJS =  addfree.o        \
17
        addregio.o       \
18
        alloc.o          \
19
        alloc_al.o       \
20
        alloc_ge.o       \
21
        alloc_pa.o       \
22
        avail.o          \
23
        avail_in.o       \
24
        dump.o           \
25
        findfree.o       \
26
        free.o           \
27
        freepage.o       \
28
        init.o           \
29
        removefr.o       \
30
        stats.o
31
 
32
include $(BASE)/config/lib.mk
33