*** empty log message ***
This commit is contained in:
parent
b70270c972
commit
00cbe5790f
|
|
@ -1,3 +1,7 @@
|
||||||
|
2008-09-15 Lionel Sainte Cluque
|
||||||
|
* src/Makefile.am: Add $(DESTDIR) in tclspice installation, required by
|
||||||
|
debian package.
|
||||||
|
|
||||||
2008-09-13 Holger Vogt
|
2008-09-13 Holger Vogt
|
||||||
* configure.in: add AC_LIBTOOL_WIN32_DLL
|
* configure.in: add AC_LIBTOOL_WIN32_DLL
|
||||||
* src/makefile.am correct typo
|
* src/makefile.am correct typo
|
||||||
|
|
|
||||||
|
|
@ -281,7 +281,7 @@ TCL_FILES = libspice.la pkgIndex.tcl
|
||||||
|
|
||||||
pkgIndex.tcl: pkgIndex.tcl.in
|
pkgIndex.tcl: pkgIndex.tcl.in
|
||||||
rm -f $@
|
rm -f $@
|
||||||
sed -e 's;%LIB_DIR%;$(libdir);g' $< | \
|
sed -e 's;%LIB_DIR%;$(DESTDIR)$(libdir);g' $< | \
|
||||||
sed -e 's;%VERSION%;$(TCLSPICE_VERSION);g' > $@
|
sed -e 's;%VERSION%;$(TCLSPICE_VERSION);g' > $@
|
||||||
|
|
||||||
all: $(TCL_FILES)
|
all: $(TCL_FILES)
|
||||||
|
|
@ -294,8 +294,8 @@ install-tcl-recursive:
|
||||||
done;
|
done;
|
||||||
|
|
||||||
install-tclspice:
|
install-tclspice:
|
||||||
$(mkinstalldirs) $(libdir)/spice
|
$(mkinstalldirs) $(DESTDIR)$(libdir)/spice
|
||||||
$(INSTALL_DATA) pkgIndex.tcl $(libdir)/spice
|
$(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(libdir)/spice
|
||||||
|
|
||||||
tclspice.lo: tclspice.c
|
tclspice.lo: tclspice.c
|
||||||
$(LTCOMPILE) -DTCLSPICE_version="\"$(TCLSPICE_VERSION)\"" -MT tclspice.lo -MD -MP -MF $(DEPDIR)/tclspice.Tpo -c -o tclspice.o $<
|
$(LTCOMPILE) -DTCLSPICE_version="\"$(TCLSPICE_VERSION)\"" -MT tclspice.lo -MD -MP -MF $(DEPDIR)/tclspice.Tpo -c -o tclspice.o $<
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue