Subversion Repositories shark

Rev

Rev 511 | Blame | Compare with Previous | Last modification | View Log | RSS feed

# The Modules library

ifndef BASE
BASE=../..
endif

include $(BASE)/config/config.mk

LIBRARY       = mod

OBJS_PATH     = $(BASE)/kernel/modules
INCL += -I$(BASE)/tracer/include

#
# Object files
#

SCHED_OBJ = rr.o      \
            rr2.o     \
            edf.o     \
            rm.o      \
            posix.o   \
            dummy.o   \
            rrsoft.o  \
            elastic.o \
            intdrive.o

APER_OBJ  = tbs.o   \
            cbs.o   \
            hardcbs.o \
            ps.o    \
            ds.o    \
            ss.o

RES_OBJ   = sem.o      \
            hartport.o \
            cabs.o     \
            pi.o       \
            npp.o      \
            pc.o       \
            srp.o      \
            nop.o      \
            nopm.o     \
            bd_edf.o   \
            bd_pscan.o

OBJS = $(SCHED_OBJ) $(APER_OBJ) $(RES_OBJ)

include $(BASE)/config/lib.mk