Newer
Older
ubixos-pre / src / sys / isa / Makefile
@reddawg reddawg on 18 Jun 2004 546 bytes UbixOS PreRelease
#  (C) 2002 The UbixOS Project
#  $Id$

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

#  Objects
OBJS = mouse.o ne2k.o atkbd.o fdc.o 8259.o pit.o

all: $(OBJS)

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

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