
# The multipliers to make.
MULTS            = mult28

# Variables for the module compiler.
export SIMPATH = ../../../../../../sim
export SYNPATH = ../../../../../../ibm_sa27e/syn
export TECHLIB = /home/cad/ibm/ibm_sa27e/current/synthesis/synopsys/IBM_SA27E_SC.db

all : 
	for i in $(MULTS); do \
		$(MAKE) -C $$i $$i.names; done;

clean:
	for i in $(MULTS); do \
		$(MAKE) -C $$i clean; done; 
