include ../Makefile.config

O_OBJS = 8254.o interrupt.o

all: arch.o

arch.o: $(O_OBJS)
	$(LD) -r -o $@ $^

clean: 
	rm -rf *.o *~
