Newer
Older
ubix2 / src / sys / vfs / Makefile
@reddawg reddawg on 1 Jun 2006 486 bytes ubix2
#  (C) 2002 The UbixOS Project
#  $Id$

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

#  Objects
OBJS = mount.o file.o vfs.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)