URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [binutils/] [Makefile] - Rev 7
Compare with Previous | Blame | View Log
## Makefile for building the assembler tool chain#BUILD = ../buildDIRS = ar as dof ld.PHONY: all install cleanall:for i in $(DIRS) ; do \$(MAKE) -C $$i all ; \doneinstall:for i in $(DIRS) ; do \$(MAKE) -C $$i install ; \doneclean:for i in $(DIRS) ; do \$(MAKE) -C $$i clean ; \donerm -f *~
