fix build sys
This commit is contained in:
parent
33bf645eaf
commit
0c7f7eee9d
11
Makefile.am
11
Makefile.am
@ -1,5 +1,10 @@
|
|||||||
## Makefile.am -- Process this file with automake to produce Makefile.in
|
## Makefile.am -- Process this file with automake to produce Makefile.in
|
||||||
# how to build a so library?
|
# how to build a so library?
|
||||||
lib_WATWAT = libbrandt
|
|
||||||
libbrandt_SOURCES = smc.c
|
lib_LTLIBRARIES = \
|
||||||
#libbrandt_LDADD = how to add libpari.so here?
|
libbrandt.la
|
||||||
|
|
||||||
|
libbrandt_la_SOURCES = \
|
||||||
|
smc.c
|
||||||
|
libbrandt_la_LDADD = \
|
||||||
|
-lpari
|
||||||
|
6
bootstrap
Executable file
6
bootstrap
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
if ! test -n "$BASH_SOURCE" || ! workdir="${BASH_SOURCE[0]%/*}" || ! test -n "$workdir" || ! cd "$workdir"; then
|
||||||
|
workdir=`dirname "$0"` && test -n "$workdir" && cd "$workdir" || echo "Warning: can't get working directory" 1>&2
|
||||||
|
fi
|
||||||
|
aclocal -I m4 --install
|
||||||
|
autoreconf -I m4 -f -i
|
Loading…
Reference in New Issue
Block a user