Makefile 294 Bytes
Newer Older
1 2
ctf: subdirs

3
SUBDIRS = interface shared tensor symmetry mapping redistribution scaling summation contraction sparse_formats
4 5 6 7 8 9 10 11 12 13 14 15
     
.PHONY: subdirs $(SUBDIRS)
     
subdirs: $(SUBDIRS)
    
$(SUBDIRS):
	$(MAKE) -C $@
     
clean:
	for dir in $(SUBDIRS) ; do \
		$(MAKE) $@ -C $$dir ; \
	done 
16