From 3fa09bd3cf47d078ffddaa54eacac03190bd43f5 Mon Sep 17 00:00:00 2001 From: Holger Date: Fri, 27 Dec 2024 16:20:08 +0100 Subject: [PATCH] Add missing header files to enable their distribution --- src/xspice/verilog/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xspice/verilog/Makefile.am b/src/xspice/verilog/Makefile.am index 50ecc0131..cd7674934 100644 --- a/src/xspice/verilog/Makefile.am +++ b/src/xspice/verilog/Makefile.am @@ -18,11 +18,11 @@ initdata2_DATA = ../../include/ngspice/cosim.h \ # Icarus Verilog support: build two shared libraries. pkglib_LTLIBRARIES = ivlng.la ivlngvpi.la -ivlng_la_SOURCES = icarus_shim.c icarus_shim.h +ivlng_la_SOURCES = icarus_shim.c icarus_shim.h coroutine_shim.h ivlng_la_CFLAGS = -I../../../../src/include ivlng_la_LDFLAGS = -module -shared -avoid-version -ivlngvpi_la_SOURCES = vpi.c icarus_shim.h vpi_user_dummy.h +ivlngvpi_la_SOURCES = vpi.c icarus_shim.h vpi_user_dummy.h coroutine.h coroutine_cosim.h ivlngvpi_la_CFLAGS = -I../../../../src/include ivlngvpi_la_LDFLAGS = -module -shared -avoid-version @@ -32,7 +32,7 @@ ivlngvpi_la_LDFLAGS = -module -shared -avoid-version if DLIBS_FULLY_RESOLVED pkglib_LTLIBRARIES += libvvp.la -libvvp_la_SOURCES = vpi_dummy.c vpi_user_dummy.h +libvvp_la_SOURCES = vpi_dummy.c vpi_user_dummy.h coroutine.h coroutine_cosim.h libvvp_la_LDFLAGS = -no-undefined -module -shared -avoid-version ivlng_la_LDFLAGS += -no-undefined ivlngvpi_la_LIBADD = libvvp.la ivlng.la