TOP = ../..
DEFS = 

include ../../Makefile.inc

OBJECTS = \
	busywait.o \
	settime.o \
	timerinit.o \
	usleep.o

all: $(OBJECTS) $(BASELIB)

.PHONY : $(BASELIB)

$(BASELIB):
	$(AR) -rcs $@ ${OBJECTS}

clean:
	rm -f *.a *.o *.map *.srec *.disasm *.brec *.out *.bin *~ *.s
