[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / prex-old / usr / server / fs

File: [local] / prex-old / usr / server / fs / Makefile (download)

Revision 1.1.1.1 (vendor branch), Tue Jun 3 09:38:51 2008 UTC (15 years, 11 months ago) by nbrk
Branch: MAIN, KOHSUKE
CVS Tags: PREX_0_7_BASE, HEAD
Branch point for: PREX_0_8_BASE
Changes since 1.1: +0 -0 lines

Yeah, this is an initial import of Prex, portable real-time microkernel 
operating system. I wanna hack it for non-profit but fun, so let it in.

include $(SRCDIR)/mk/own.mk

PROG=		fs
SUBDIR=		vfs
OBJS=		./vfs/vfscore.o

ifeq ($(CONFIG_DEVFS),y)
SUBDIR+=	devfs
OBJS+=		./devfs/devfs.o
endif
ifeq ($(CONFIG_RAMFS),y)
SUBDIR+=	ramfs
OBJS+=		./ramfs/ramfs.o
endif
ifeq ($(CONFIG_ARFS),y)
SUBDIR+=	arfs
OBJS+=		./arfs/arfs.o
endif
ifeq ($(CONFIG_FATFS),y)
SUBDIR+=	fatfs
OBJS+=		./fatfs/fatfs.o
endif

include $(SRCDIR)/mk/prog.mk