URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [Makefile] - Rev 288
Go to most recent revision | Compare with Previous | Blame | View Log
## Makefile for ECO32 project#VERSION = 0.27DIRS = binutils tools sim simtest fpga hwtests monitor disk stdaloneBUILD = `pwd`/build.PHONY: all doc compiler builddir clean distall: compilerfor i in $(DIRS) ; do \$(MAKE) -C $$i install ; \donedoc:$(MAKE) -C doc installcompiler: builddir$(MAKE) -C lcc BUILDDIR=$(BUILD)/bin \HOSTFILE=etc/eco32-netbsd.c lcc$(MAKE) -C lcc BUILDDIR=$(BUILD)/bin allrm -f $(BUILD)/bin/*.crm -f $(BUILD)/bin/*.orm -f $(BUILD)/bin/*.abuilddir:mkdir -p $(BUILD)mkdir -p $(BUILD)/binclean:rm -f lcc/lburg/gram.cfor i in $(DIRS) ; do \$(MAKE) -C $$i clean ; \done$(MAKE) -C doc cleanrm -rf $(BUILD)rm -f *~dist: clean(cd .. ; \tar --exclude-vcs -cvf \eco32-$(VERSION).tar \eco32-$(VERSION)/* ; \gzip -f eco32-$(VERSION).tar)
Go to most recent revision | Compare with Previous | Blame | View Log
