Subversion Repositories shark

Rev

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