URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [disk/] [tools/] [Makefile] - Rev 95
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for basic disk tools
#
BUILD = ../../build
DIRS = mkdisk mkmboot mkpart shpart mkdata fs-EOS32 fs-NetBSD
.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
mkdir -p $(BUILD)/run
cp Makefile.run $(BUILD)/run/Makefile
clean:
for i in $(DIRS) ; do \
$(MAKE) -C $$i clean ; \
done
rm -f *~
Go to most recent revision | Compare with Previous | Blame | View Log