Updated some Makefiles for generating distribution tarball.
This commit is contained in:
parent
4ab5fc7abb
commit
1e9ba171d8
|
|
@ -5,7 +5,9 @@ DIST_SUBDIRS = @XGRAPHDIR@ doc src man tests
|
|||
|
||||
EXTRA_DIST = FAQ autogen.sh Stuarts_Poly_Notes \
|
||||
ANALYSES BUGS AUTHORS ChangeLog \
|
||||
DEVICES NEWS README contrib patches examples @NOTXGRAPH@
|
||||
DEVICES NEWS README README.tcl \
|
||||
README.adms contrib patches \
|
||||
examples visualc @NOTXGRAPH@
|
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
|
||||
config.h.in config.sub configure install-sh \
|
||||
|
|
|
|||
12
configure.in
12
configure.in
|
|
@ -833,6 +833,8 @@ if test "$enable_adms" = "yes"; then
|
|||
adms/mextram \
|
||||
adms/ekv \
|
||||
adms/psp102 "
|
||||
|
||||
NOTVLADEVDIR=""
|
||||
|
||||
VLADEV=" spicelib/devices/adms/hicum0/libhicum0.la \
|
||||
spicelib/devices/adms/hicum2/libhicum2.la \
|
||||
|
|
@ -840,10 +842,15 @@ if test "$enable_adms" = "yes"; then
|
|||
spicelib/devices/adms/ekv/libekv.la \
|
||||
spicelib/devices/adms/psp102/libpsp102.la "
|
||||
|
||||
else
|
||||
|
||||
VLADEVDIR=""
|
||||
NOTVLADEVDIR="adms"
|
||||
fi
|
||||
AC_SUBST(ADMSXML)
|
||||
AC_SUBST(VLADEVDIR)
|
||||
AC_SUBST(VLADEV)
|
||||
AC_SUBST(NOTVLADEVDIR)
|
||||
|
||||
dnl NDEV option
|
||||
if test "$enable_ndev" = "yes"; then
|
||||
|
|
@ -851,14 +858,18 @@ if test "$enable_ndev" = "yes"; then
|
|||
AC_DEFINE(NDEV,[],[The NDEV interface])
|
||||
NDEV=""
|
||||
NDEV_DIR=" ndev "
|
||||
NOTNDEV_DIR=""
|
||||
NDEV_LIB=" spicelib/devices/ndev/libndev.la "
|
||||
|
||||
else
|
||||
NDEV=""
|
||||
NDEV_DIR=""
|
||||
NDEV_LIB=""
|
||||
NOTNDEV_DIR="ndev"
|
||||
fi
|
||||
AC_SUBST(NDEV_DIR)
|
||||
AC_SUBST(NDEV_LIB)
|
||||
AC_SUBST(NOTNDEV_DIR)
|
||||
|
||||
|
||||
dnl Cluster option
|
||||
|
|
@ -1052,6 +1063,7 @@ AC_CONFIG_FILES([Makefile
|
|||
tests/sensitivity/Makefile
|
||||
tests/transient/Makefile
|
||||
tests/transmission/Makefile
|
||||
tests/TransImpedanceAmp/Makefile
|
||||
tests/resistance/Makefile
|
||||
tests/vbic/Makefile])
|
||||
AC_OUTPUT
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
@set UPDATED 01 December 2008
|
||||
@set UPDATED-MONTH December 2008
|
||||
@set UPDATED 25 November 2008
|
||||
@set UPDATED-MONTH November 2008
|
||||
@set EDITION 18
|
||||
@set VERSION 18
|
||||
|
|
|
|||
|
|
@ -17,7 +17,8 @@ endif
|
|||
endif
|
||||
|
||||
EXTRA_DIST = ngspice.txt ngspice.idx setplot spectrum \
|
||||
devload devaxis ciderinit winmain.c
|
||||
devload devaxis ciderinit winmain.c unsupported \
|
||||
tclspice.c tclspice.map pkgIndex.tcl.in tclspinit.in
|
||||
|
||||
helpdatadir = $(pkgdatadir)/helpdir
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
SUBDIRS = plotting help parser wdisp numparam
|
||||
DIST_SUBDIRS = plotting help parser wdisp numparam
|
||||
EXTRA_DIST = testcommands.c
|
||||
|
||||
noinst_LTLIBRARIES = libfte.la
|
||||
|
||||
|
|
|
|||
|
|
@ -132,6 +132,8 @@ libdev_la_SOURCES = \
|
|||
cktinit.c \
|
||||
limit.c
|
||||
|
||||
EXTRA_DIST = @NOTNDEV_DIR@ @NOTVLADEVDIR@
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/spicelib/devices
|
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ SUBDIRS = bsim1 \
|
|||
resistance \
|
||||
sensitivity \
|
||||
transient \
|
||||
TransImpedanceAmp \
|
||||
transmission \
|
||||
vbic
|
||||
|
||||
|
|
@ -44,12 +45,15 @@ DIST_SUBDIRS = bsim1 \
|
|||
resistance \
|
||||
sensitivity \
|
||||
transient \
|
||||
TransImpedanceAmp \
|
||||
transmission \
|
||||
vbic
|
||||
|
||||
TESTS_ENVIRONMENT = $(SHELL) $(top_srcdir)/tests/bin/check.sh $(top_builddir)/src/ngspice
|
||||
|
||||
EXTRA_DIST = \
|
||||
README bin
|
||||
README bin adms \
|
||||
tcl tcl-testbench1 tcl-testbench2 tcl-testbench3 tcl-testbench4
|
||||
|
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
|
|
|||
Loading…
Reference in New Issue