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

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

#  Linker
LINKER = ld

#  Remove
REMOVE = rm -fr

#  Objects
OBJS = devfs.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)