URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [Makefile] - Rev 218
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for building standalone test programs
# (which are to be loaded from disk by a boot-loader)
#
BUILD = ../build
DIRS = hello hello2 bottles memsize memtest onetask twotasks-1 \
twotasks-2 dskchk dskchk2 wrtmbr dmpmbr mkpart shpart
.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