19 lines
435 B
Makefile
19 lines
435 B
Makefile
M2DIR=../..
|
|
include $(M2DIR)/software/common.mak
|
|
|
|
OBJECTS=divsi3.o setjmp.o libc.o crc16.o crc32.o console.o timer.o system.o board.o uart.o softfloat.o softfloat-glue.o vsnprintf.o strtod.o
|
|
|
|
all: libbase.a
|
|
|
|
# pull in dependency info for *existing* .o files
|
|
-include $(OBJECTS:.o=.d)
|
|
|
|
libbase.a: $(OBJECTS)
|
|
$(AR) clr libbase.a $(OBJECTS)
|
|
$(RANLIB) libbase.a
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
rm -f $(OBJECTS) $(OBJECTS:.o=.d) libbase.a .*~ *~
|