From e9a3562d6a5cf88e6034570ab791e91e63ffb14a Mon Sep 17 00:00:00 2001 From: Patrick Williams Date: Fri, 25 Jun 2010 16:27:36 -0500 Subject: Add shell of VFS for registering and resolving message queue names. --- src/sys/vfs/makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/sys/vfs/makefile (limited to 'src/sys/vfs/makefile') diff --git a/src/sys/vfs/makefile b/src/sys/vfs/makefile new file mode 100644 index 000000000..94ca71bbf --- /dev/null +++ b/src/sys/vfs/makefile @@ -0,0 +1,10 @@ +OBJDIR = ../../../obj +include ../../../config.mk + +OBJS = vfs_main.o +OBJECTS = $(addprefix ${OBJDIR}/, ${OBJS}) + +all: ${OBJECTS} + +clean: + (rm -f ${OBJECTS} ) -- cgit v1.2.1