summaryrefslogtreecommitdiff
path: root/Source/Kernel/Makefile
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-10-24 18:24:46 +0200
committerAlexis211 <alexis211@gmail.com>2009-10-24 18:24:46 +0200
commitb639b99b3e8f4cf77560d8d473b13d992ac8eb10 (patch)
tree63ebeec75f4ab71d73d743afca04a98636dee165 /Source/Kernel/Makefile
parentf62cfdc8ff6297616d68f6b195db7abc82ab457b (diff)
downloadMelon-b639b99b3e8f4cf77560d8d473b13d992ac8eb10.tar.gz
Melon-b639b99b3e8f4cf77560d8d473b13d992ac8eb10.zip
More work on userland syscalls : Files are implemented.
TextFile now is a common (= kernel and userland) library.
Diffstat (limited to 'Source/Kernel/Makefile')
-rw-r--r--Source/Kernel/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Kernel/Makefile b/Source/Kernel/Makefile
index 4f332d6..301d64c 100644
--- a/Source/Kernel/Makefile
+++ b/Source/Kernel/Makefile
@@ -52,12 +52,13 @@ Objects = Core/loader.wtf.o \
../Library/Common/Heap.class.o \
../Library/Common/Heap-index.class.o \
../Library/Common/Mutex.class.o \
+ ../Library/Common/TextFile.class.o \
VFS/Partition.class.o \
VFS/Part.ns.o \
VFS/VFS.ns.o \
VFS/FSNode-sc.proto.o \
VFS/File.class.o \
- VFS/TextFile.class.o \
+ VFS/File-sc.class.o \
VFS/DirectoryNode.class.o \
UserManager/Usr.ns.o \
FileSystems/RamFS/RamFS.class.o \
@@ -94,6 +95,7 @@ $(OutFile): $(Objects)
clean:
echo "* Removing object files..."
+ rm -rf $(Objects)
rm -rf *.o
rm -rf */*.o
rm -rf */*/*.o