Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1063 → Rev 1689

/shark/trunk/fs/makefile
File deleted
/shark/trunk/fs/rtcfunc.h
57,7 → 57,7
 
#include <time.h>
 
#include "ll/sys/cdefs.h"
#include <arch/sys/cdefs.h>
 
__BEGIN_DECLS
 
/shark/trunk/fs/Makefile
0,0 → 1,37
targets:= libfs.a
 
libfs.a-objs:= \
access.o \
chdir.o \
close.o \
closedir.o \
dcache.o \
dentry.o \
fcntl.o \
fdevice.o \
file.o \
fs.o \
fstat.o \
getcwd.o \
getumask.o \
inode.o \
lseek.o \
mount.o \
open.o \
opendir.o \
read.o \
readdir.o \
rwlock.o \
rtc.o \
stat.o \
super.o \
truncate.o \
umask.o \
umount.o \
unlink.o \
utime.o \
write.o
 
exported-cppflags:= -D_PARANOIA -DNDEBUG -I$(curdir) \
-imacros $(srctree)/include/fs/fsconf.h
 
/shark/trunk/fs/msdos/makefile
File deleted
/shark/trunk/fs/msdos/Makefile
0,0 → 1,26
#
# The MSDOS (FAT16) sub-library
#
 
ifndef BASE
BASE=../..
endif
 
include $(BASE)/config/config.mk
 
LIBRARY = fs
 
OBJS_PATH = $(BASE)/fs/msdos
 
OBJS= msdos_i.o \
msdos_f.o \
msdos_s.o \
msdos_d.o
 
#C_DEF += -D_PARANOIA
C_DEF += -D_PARANOIA -DNDEBUG
 
C_MAC += -imacros $(BASE)/include/fs/fsconf.h
C_INC += -I..
 
include $(BASE)/config/sublib.mk