Subversion Repositories shark

Rev

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