Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1621 → Rev 1681

/shark/branches/xen/drivers/block/makefile
File deleted
/shark/branches/xen/drivers/block/sstf/Makefile
0,0 → 1,2
targets:= sstf.o
 
/shark/branches/xen/drivers/block/fcfs/Makefile
0,0 → 1,2
targets:= fcfs.o
 
/shark/branches/xen/drivers/block/edf/Makefile
0,0 → 1,2
targets:= edf.o
 
/shark/branches/xen/drivers/block/look/Makefile
0,0 → 1,2
targets:= look.o
 
/shark/branches/xen/drivers/block/pscan/Makefile
0,0 → 1,2
targets:= pscan.o
 
/shark/branches/xen/drivers/block/clook/Makefile
0,0 → 1,2
targets:= clook.o
 
/shark/branches/xen/drivers/block/Makefile
0,0 → 1,35
_SCHED_FCFS=y
 
cppflags-$(_SCHED_FCFS):= -D_SCHED_FCFS
objs-$(_SCHED_FCFS):= fcfs/
 
cppflags-$(_SCHED_SSTF):= -D_SCHED_SSTF
objs-$(_SCHED_SSTF):= sstf/
 
cppflags-$(_SCHED_LOOK):= -D_SCHED_LOOK
objs-$(_SCHED_LOOK):= look/
 
cppflags-$(_SCHED_CLOOK):= -D_SCHED_CLOOK
objs-$(_SCHED_CLOOK):= clook/
 
cppflags-$(_SCHED_EDF):= -D_SCHED_EDF
objs-$(_SCHED_EDF):= edf/
 
cppflags-$(_SCHED_PSCAN):= -D_SCHED_PSCAN
objs-$(_SCHED_PSCAN):= pscan/
 
targets:= libblk.a
 
libblk.a-objs:= \
bdev.o \
lodsk.o \
phdsk.o \
glue.o \
ide.o \
idereq.o \
idelow.o \
$(objs-y)
 
exported-cppflags:= $(cppflags-y) -DNDEBUG -I$(curdir) \
-imacros $(srctree)/include/fs/bdevconf.h