Makefile 663 Bytes
# Makefile for Compass standard cell blocks
#
# Created by Matthew Rohm    6/3/94
# Modified by Tony DeLaurier 7/26/94
#

include /ecad/reality/include/Makefile.incl

#####################################################
TM_SRCS=       "tm.v \
		tm_load.v"
		tm_mux.v"

TM_LOAD_SRCS=  "tm_load.v"

TM_MUX_SRCS=   "tm_mux.v"

################################################
#  targets                                     #
################################################

tm.syn: tm_load.syn tm_mux.syn
	make BLOCK="tm" VSRCS=$(TM_SRCS) syn

tm_load.syn:
	make BLOCK="tm_load" VSRCS=$(TM_LOAD_SRCS) syn

tm_mux.syn:
	make BLOCK="tm_mux" VSRCS=$(TM_MUX_SRCS) syn