include ../define.mk

OBJS = timer.o keyboard.o ide.o vga.o

all:	driver.o

driver.o:	$(OBJS)
	$(LD) -r -o $@ $(OBJS)


clean:
	rm -f *.o
