URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [binutils/] [tests-1/] [Makefile] - Rev 240
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for as/ld tests
#
BUILD = ../../build
DIRS = H16 L16 R16 R26 W32
.PHONY: all clean
all:
for i in $(DIRS) ; do \
$(MAKE) -C $$i all ; \
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