Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   VHDL (http://www.velocityreviews.com/forums/f18-vhdl.html)
-   -   Make file ...........Help Please (http://www.velocityreviews.com/forums/t21409-make-file-help-please.html)

MACEI'S 07-09-2003 05:19 PM

Make file ...........Help Please
 
Hi Fellows,

How can I synthesize multiple file one by one using xilinx compiler in
MAKEFILE script. I have done using only one file but when I enter
multiple files in "VHDL= ....." field thenI get the following error.

make: *** No rule to make target `VIR3.vhd,VIR3_1.vhd,VIR3_2.vhd

Rgds

MACEI

Rudolf Usselmann 07-10-2003 05:18 AM

Re: Make file ...........Help Please
 
vhdl_uk@yahoo.co.uk (MACEI'S) wrote in message news:<fdfcada5.0307090919.268c6b17@posting.google. com>...
> Hi Fellows,
>
> How can I synthesize multiple file one by one using xilinx compiler in
> MAKEFILE script. I have done using only one file but when I enter
> multiple files in "VHDL= ....." field thenI get the following error.
>
> make: *** No rule to make target `VIR3.vhd,VIR3_1.vhd,VIR3_2.vhd
>
> Rgds
>
> MACEI


Well, you should definitely get the makefile hand book - it
has to many options ...

But, to summarize, you probably want something like this:

VHDL=VIR3.vhd VIR3_1.vhd VIR3_2.vhd # no commas !

$(VHDL):
synthesis_command $@

replace "synthesis command" with the name of your synthesis tool.
The "$@" will be automatically replaced with the vhdl file names.

Regards,
rudi
--------------------------------------------------------
www.asics.ws --- Solutions for your ASIC/FPGA needs ---
----------------- FPGAs * Full Custom ICs * IP Cores ---
FREE IP Cores --> http://www.asics.ws/ <-- FREE IP Cores


All times are GMT. The time now is 02:20 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57