Subversion Repositories shark

Rev

Rev 29 | 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
        endcycle.o              \
20
        event.o                 \
21
        exchtxt.o               \
22
        exchgrx.o               \
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
        sleep.o                 \
42
        status.o                \
43
        time.o                  \
44
        tpreempt.o              \
45
	trace.o
46
#       create.o # look at kernel/create.c and kernel/grpcreat.c for more info
47
 
48
include $(BASE)/config/lib.mk
49
 
50
install all clean cleanall depend::
51
	make -C modules $@
52
	make -C mem $@
53