From a5b3234e998589dc684af6eaf5d0853a2e09425f Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Mon, 22 Mar 2021 13:15:42 +0000 Subject: [PATCH] - added Makefile for eval_fixed_ja git-svn-id: http://moon:8086/svn/vhdl/trunk@1448 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/fixed_ja/Makefile.eval_fixed_ja | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 lib/fixed_ja/Makefile.eval_fixed_ja diff --git a/lib/fixed_ja/Makefile.eval_fixed_ja b/lib/fixed_ja/Makefile.eval_fixed_ja new file mode 100644 index 0000000..aa59278 --- /dev/null +++ b/lib/fixed_ja/Makefile.eval_fixed_ja @@ -0,0 +1,26 @@ +# ------------------------------------------------- +# Global options +# ------------------------------------------------- +LANG_STD := 93c +IEEE_STD := standard +WORK_LIB := work + +# ------------------------------------------------- +# Target options +# ------------------------------------------------- +SRCS += ../PCK_FIO-2002.7/PCK_FIO_1993.vhd +SRCS += ../PCK_FIO-2002.7/PCK_FIO_1993_BODY.vhd +SRCS += fixed_ja.vhd +SRCS += fixed_ja_body.vhd +SRCS += eval_fixed_ja.vhd +SRCS += tb_eval_fixed_ja.vhd + +# ------------------------------------------------- +# Compile +TARGET := eval_fixed_ja +ENTITY := tb_eval_fixed_ja +WITH_GHW := y +RUN_TIME := 2000us + +include ../../Common/make/ghdl.mk +# -------------------------------------------------