Browse Source

few build changes

pre-master-46
dwarning 15 years ago
parent
commit
cded776aa6
  1. 6
      ChangeLog
  2. 8
      src/Makefile.am
  3. 4
      src/xspice/cmpp/Makefile.am

6
ChangeLog

@ -1,3 +1,9 @@
2011-05-07 Dietmar Warning
* src/Makefile.am: change lib order for linking with gcc4 to prevent
unresolved symbols
* xspice/cmpp/Makefile.am: there are flex'es, which not accept "-o outfile"
but accept "-ooutfile"
2011-05-05 Dietmar Warning
* spicelib/devices/bsim3v32/*.c, *.h: allow delvto and mulu0 as instance
parameter, usefull for stress amn mismatch simulations

8
src/Makefile.am

@ -115,12 +115,6 @@ endif
ngspice_LDADD += \
frontend/plotting/libplotting.la
if XSPICE_WANTED
ngspice_LDADD += \
xspice/cm/libcmxsp.la \
xspice/mif/libmifxsp.la
endif
ngspice_LDADD += \
spicelib/devices/dev.lo \
$(DYNAMIC_DEVICELIBS)
@ -144,6 +138,8 @@ ngspice_LDADD += \
if XSPICE_WANTED
ngspice_LDADD += \
xspice/cm/libcmxsp.la \
xspice/mif/libmifxsp.la \
xspice/evt/libevtxsp.la \
xspice/enh/libenhxsp.la \
xspice/ipc/libipcxsp.la \

4
src/xspice/cmpp/Makefile.am

@ -17,11 +17,11 @@ cmpp_SOURCES = cmpp.h main.c pp_ifs.c pp_lst.c pp_mod.c read_ifs.c util.c \
mod_lex.o : mod_yacc.h
mod_lex.c : mod_lex.l
$(LEX) -o $@ $<
$(LEX) -o$@ $<
ifs_lex.o : ifs_yacc.h
ifs_lex.c : ifs_lex.l
$(LEX) -o $@ $<
$(LEX) -o$@ $<
ifs_yacc.c ifs_yacc.h : ifs_yacc.y
$(BISON) $(BISONFLAGS) -d -o ifs_yacc.c $<

Loading…
Cancel
Save