include ../../build/cyborn.mk



#separate functions into individual files so that during linking only the
# needed files are linked in - saves space

OBJFILES =  flashloader.o \
            cyConsole.o   \


libload.a: $(OBJFILES) makefile
	$(TOOLPATH)ar.exe -rcs $@ $(OBJFILES)
	cp $@ $(LIBPATH)

clean:
	rm $(OBJFILES) libload.a


