URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [fpga/] [mc/] [boards/] [Makefile] - Rev 315
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for multicycle implementations of ECO32
#
BUILD = ../../../build
DIRS = xsa-xst-3 s3e-500
.PHONY: all install clean
all:
for i in $(DIRS) ; do \
$(MAKE) -C $$i all ; \
done
install:
for i in $(DIRS) ; do \
$(MAKE) -C $$i install ; \
done
clean:
for i in $(DIRS) ; do \
$(MAKE) -C $$i clean ; \
done
rm -f *~
Go to most recent revision | Compare with Previous | Blame | View Log