litex/software/libbase/Makefile

19 lines
425 B
Makefile
Raw Normal View History

2012-02-05 14:01:28 -05:00
M2DIR=../..
include $(M2DIR)/software/include.mak
2012-05-24 13:01:47 -04:00
OBJECTS=divsi3.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
2012-02-05 14:01:28 -05:00
all: libbase.a
2012-02-03 06:25:55 -05:00
# 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:
2012-02-05 14:01:28 -05:00
rm -f $(OBJECTS) $(OBJECTS:.o=.d) libbase.a .*~ *~