###############################################################################
# $Id: Makefile,v 1.1.1.1 2000/02/03 20:45:12 twilson Exp $
###############################################################################
# Synthesis Makefile for hierarchal build. 
# 5/5/97 Gregg D. Lahti initial release 
# 11/16/99 Gregg D. Lahti for greer-V
###############################################################################
#
# Overview:
#
# The main Makefile slurps the make.rules file in when gmake is called.  
# The make.rules uses $(DB) to expand into a ./dbs/ variable which is 
# pre-appended to the target being compiled.  The ./dbs/[file].db is used as 
# a "timestamp" of the VHDL file being compiled (as well as the final object).
#
# User edits:
#
# Each Makefile should have a main target called "all.local" which
# the make.rules file uses as it's target.  Set the RECURSEDIRS variable to
# a list of sub-directories that make should traverse first as a dependency. 
#
###############################################################################
###############################################################################
# INCLUDE YOUR DEPENDENCY LIST HERE!
###############################################################################


# Sub-unit directories (referenced from here).  Leave empty if no subdirs.
# example: RECURSEDIRS = ../foo ../bar ../bletch
#
RECURSEDIRS = 
###############################################################################
# DO NOT EDIT PAST THIS LINE!  
###############################################################################
include $(PROJ_SYN)/syn_make.rules

# sub-functional units to be included at unit compile time
# Syntax is SUBFUB_[unit_name] := {list of units}
# example:  SUBFUB_foo_unit := bar.vhd bletch.vhd comps_kg.vhd
# 
# The following dependency was auto generated by mkdepend 

# The following variable is used to create target lfsr 
# Make lfsr if any sub-functional units or the top changes
$(DB)lfsr.db :     ../src/lfsr.v


# Required target
all.local: $(DB)lfsr.db

###############################################################################
# Log file
###############################################################################
#
# $Log$
