mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
18 lines
433 B
Makefile
18 lines
433 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 atof.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 .*~ *~
|