Subversion Repositories shark

Rev

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