mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
20 lines
340 B
Makefile
20 lines
340 B
Makefile
|
MSCDIR=../..
|
||
|
include $(MSCDIR)/software/common.mak
|
||
|
|
||
|
COMMONFLAGS += -I$(MSCDIR)/software/include/dyld
|
||
|
|
||
|
OBJECTS=dyld.o
|
||
|
|
||
|
all: libdyld.a
|
||
|
|
||
|
# pull in dependency info for *existing* .o files
|
||
|
-include $(OBJECTS:.o=.d)
|
||
|
|
||
|
libdyld.a: $(OBJECTS)
|
||
|
$(AR) crs libdyld.a $(OBJECTS)
|
||
|
|
||
|
.PHONY: clean
|
||
|
|
||
|
clean:
|
||
|
$(RM) $(OBJECTS) $(OBJECTS:.o=.d) libdyld.a .*~ *~
|