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 Generic Kernel library
2
 
3
ifndef BASE
4
BASE=..
5
endif
45 pj 6
 
2 pj 7
include $(BASE)/config/config.mk
8
 
9
LIBRARY       = gkern
10
 
11
OBJS_PATH     = $(BASE)/kernel
12
 
13
# Object files
14
 
15
OBJS =  activate.o              \
16
        assert.o                \
17
        blkact.o                \
18
        cancel.o                \
19
        conditio.o              \
20
        event.o                 \
38 pj 21
        exchand.o               \
2 pj 22
        grpcreat.o              \
23
        jet.o                   \
24
        join.o                  \
25
        kern.o                  \
26
        keys.o                  \
27
        kill.o                  \
28
        init.o                  \
29
        int_sem.o               \
30
        mem.o                   \
31
        mqueue.o                \
32
        mutex.o                 \
33
        nanoslp.o               \
34
        panic.o                 \
35
        printk.o                \
36
        perror.o                \
37
        pthread.o               \
29 pj 38
        iqueue.o                \
2 pj 39
        signal.o                \
40
        time.o                  \
41
        tpreempt.o              \
38 pj 42
	trace.o 		\
43
	tskmsg.o
2 pj 44
 
45
include $(BASE)/config/lib.mk
46
 
47
install all clean cleanall depend::
48
	make -C modules $@
49
	make -C mem $@
50