blob: 8766f99c68375f133199b2a37dce5fdbabfba294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
## ----------------------------------------------------------------------------
## Script : makefile.sources
## ----------------------------------------------------------------------------
## Author : Johann Faerber
## Company : University of Applied Sciences Augsburg
## ----------------------------------------------------------------------------
## Description: provide all the VHDL source files in the variable SYN_SOURCE_FILES
## Attention !!!
## -------------
## Do not forget a new line after the final source file !
## ----------------------------------------------------------------------------
SYN_SOURCE_FILES = \
../../src/rising_edge_detector_qfsm.vhd \
../../src/falling_edge_detector_qfsm.vhd \
../../src/resolver_master_qfsm.vhd \
../../src/resolver_structure.vhd \
../../src/synchroniser_rtl.vhd \
../../src/cntupdn_rtl.vhd \
../../src/incrementer_structure.vhd \
# do not delete this line
# -----------------------------------------------------------------------------
|