blob: 16f8f8e6611bd6743386a058e0af9d4c3fed8830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
#set -x
db_dist="../db/dist"
CFLAGS="$CFLAGS" $db_dist/configure \
$(echo $* | sed -e "s% --srcdir=[^ ]*% --enable-shared --enable-static --srcdir=$db_dist%")
mv Makefile Makefile.orig
cat Makefile.orig | sed -e '/^install:/c\
.PHONY: listobjs\
listobjs:\
@echo $(OBJS)\
\
distdir install:\
\
db3_install: all install_setip \\' > Makefile
make -s listobjs > db3lobjs
|