URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [fpga/] [tests/] [Makefile] - Rev 332
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for tests
#
BUILD = ../../build
DIRS = test_000 test_001 test_002 test_003 \
test_004 test_005 test_006 test_007 \
test_010 test_011 \
test_050 test_051 test_052 test_053 test_054 \
test_090 \
test_100 test_101
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