mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Remove libmisc
This commit is contained in:
parent
7fcc094b63
commit
d3c23fb048
3 changed files with 1 additions and 24 deletions
|
@ -45,7 +45,6 @@ soc_software_packages = [
|
|||
# LiteX cores.
|
||||
"libutils",
|
||||
"libcomm",
|
||||
"libmisc",
|
||||
|
||||
# LiteX Ecosystem cores.
|
||||
"libfatfs",
|
||||
|
|
|
@ -6,7 +6,7 @@ void isr(void);
|
|||
|
||||
#ifdef __or1k__
|
||||
|
||||
#include <base/uart.h>
|
||||
#include <libcomm/uart.h>
|
||||
|
||||
#define EXTERNAL_IRQ 0x8
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
include ../include/generated/variables.mak
|
||||
include $(SOC_DIRECTORY)/software/common.mak
|
||||
|
||||
OBJECTS = \
|
||||
exception.o
|
||||
|
||||
all: libmisc.a
|
||||
|
||||
libmisc.a: $(OBJECTS)
|
||||
$(AR) crs libmisc.a $(OBJECTS)
|
||||
|
||||
# pull in dependency info for *existing* .o files
|
||||
-include $(OBJECTS:.o=.d)
|
||||
|
||||
%.o: $(LIBMISC_DIRECTORY)/%.c
|
||||
$(compile)
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
clean:
|
||||
$(RM) $(OBJECTS)
|
||||
$(RM) libmisc.a .*~ *~
|
Loading…
Reference in a new issue