Newer
Older
ubixos-kernel / vfs / Makefile
@reddawg reddawg on 13 Feb 2009 479 bytes Removed duplicate vmmGetFreeKernel
#  (C) 2002,2009 The UbixOS Project
#  $Id$

# Include Global 'Source' Options
include ../Makefile.inc

#  Objects
OBJS = mount.o file.o vfs.o vfs_syscalls.o

all: $(OBJS)

#  Compile Types
.cc.o:
	$(CXX) ${CFLAGS} ${INCLUDES} -c -o $@ $<
.cc.s:
	$(CXX) ${CFLAGS} ${INCLUDES} -S -o $@ $<
.c.o:
	$(CC)  ${CFLAGS} ${INCLUDES} -c -o $@ $<
.c.s:
	$(CC)  ${CFLAGS} ${INCLUDES} -S -o $@ $<
.S.o:
	$(CC)  ${CFLAGS} ${INCLUDES} -c -o $@ $<

# Clean up the junk
clean:
	$(REMOVE) $(OBJS)