small fixes to make some `Makefiles' ready for build in a separate directory
This commit is contained in:
parent
8e005571e0
commit
d0392a026b
|
|
@ -1,3 +1,9 @@
|
||||||
|
2011-01-25 Robert Larice
|
||||||
|
* src/frontend/Makefile.am ,
|
||||||
|
* src/spicelib/devices/adms/admst/ngspiceMakefile.am.xml
|
||||||
|
* src/spicelib/parser/Makefile.am
|
||||||
|
small fixes to make some `Makefiles' ready for build in a separate directory
|
||||||
|
|
||||||
11-01-18 Holger Vogt
|
11-01-18 Holger Vogt
|
||||||
* plotcurv.c: line 139 test for existance of v_plot before comparing
|
* plotcurv.c: line 139 test for existance of v_plot before comparing
|
||||||
pl_scale
|
pl_scale
|
||||||
|
|
|
||||||
|
|
@ -197,5 +197,6 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/include @X_CFLAGS@
|
||||||
MAINTAINERCLEANFILES = Makefile.in
|
MAINTAINERCLEANFILES = Makefile.in
|
||||||
|
|
||||||
parse-bison.c parse-bison.h : parse-bison.y
|
parse-bison.c parse-bison.h : parse-bison.y
|
||||||
bison $<
|
bison $(srcdir)/parse-bison.y
|
||||||
parse.c : parse-bison.c
|
|
||||||
|
$(srcdir)/parse.c : parse-bison.c
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,10 @@
|
||||||
<!--
|
<!--
|
||||||
$Id$
|
$Id$
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.15 2011-01-13 17:05:46 dwarning
|
Revision 1.16 2011-01-25 17:33:37 rlar
|
||||||
|
small fixes to make some `Makefiles' ready for build in a separate directory
|
||||||
|
|
||||||
|
Revision 1.15 2011/01/13 17:05:46 dwarning
|
||||||
set version parameter to 2.3.0
|
set version parameter to 2.3.0
|
||||||
|
|
||||||
Revision 1.14 2008/12/22 08:16:59 dwarning
|
Revision 1.14 2008/12/22 08:16:59 dwarning
|
||||||
|
|
@ -88,9 +91,9 @@
|
||||||
<admst:variable name="module" select="%s"/>
|
<admst:variable name="module" select="%s"/>
|
||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
ADMSXMLINTERFACE=../admst
|
ADMSXMLINTERFACE=\$(srcdir)/../admst
|
||||||
$(module).c: admsva/$(module).va
|
$(module).c: admsva/$(module).va
|
||||||
admsXml -Iadmsva admsva/$(module).va \\
|
admsXml -I\$(srcdir) -I\$(srcdir)/admsva \$(srcdir)/admsva/$(module).va \\
|
||||||
-e \$(ADMSXMLINTERFACE)/ngspiceVersion.xml \\
|
-e \$(ADMSXMLINTERFACE)/ngspiceVersion.xml \\
|
||||||
-e \$(ADMSXMLINTERFACE)/ngspiceMODULEitf.h.xml \\
|
-e \$(ADMSXMLINTERFACE)/ngspiceMODULEitf.h.xml \\
|
||||||
-e \$(ADMSXMLINTERFACE)/ngspiceMODULEinit.c.xml \\
|
-e \$(ADMSXMLINTERFACE)/ngspiceMODULEinit.c.xml \\
|
||||||
|
|
|
||||||
|
|
@ -69,9 +69,9 @@ libinp_la_SOURCES = \
|
||||||
sperror.c \
|
sperror.c \
|
||||||
inp.h
|
inp.h
|
||||||
|
|
||||||
inpptree.c : inpptree-parser.c
|
$(srcdir)/inpptree.c : inpptree-parser.c
|
||||||
inpptree-parser.c inpptree-parser.h : inpptree-parser.y
|
inpptree-parser.c inpptree-parser.h : inpptree-parser.y
|
||||||
bison $<
|
bison $(srcdir)/inpptree-parser.y
|
||||||
|
|
||||||
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/frontend
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/frontend
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue