* Plugins in misc/ now get compiled.

git-svn-id: svn://svn.zoy.org/elk/trunk@27 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
sam 2003-08-25 11:54:18 +00:00
parent 8d7b935ea6
commit 29a24afc32
6 changed files with 49 additions and 162 deletions

View File

@ -57,6 +57,7 @@ AC_OUTPUT([
doc/Makefile
examples/Makefile
lib/Makefile
lib/misc/Makefile
scm/Makefile
scripts/Makefile
src/Makefile

View File

@ -0,0 +1 @@
SUBDIRS = misc unix xaw xlib xm xt

View File

@ -1,24 +0,0 @@
SHELL=/bin/sh
MAKE=make
all: default
Makefile.local: build ../../config/system ../../config/site
$(SHELL) ./build
default: Makefile.local
$(MAKE) -f Makefile.local
install: Makefile.local
$(MAKE) -f Makefile.local install
localize: Makefile.local
lint: Makefile.local
$(MAKE) -f Makefile.local lint
clean: Makefile.local
$(MAKE) -f Makefile.local clean
distclean: Makefile.local
$(MAKE) -f Makefile.local distclean

46
lib/misc/Makefile.am Normal file
View File

@ -0,0 +1,46 @@
NULL =
libelk_LTLIBRARIES = \
libbitstring.la \
libelk-eval.la \
libhack.la \
libnewhandler.la \
libregexp.la \
libdebug.la \
libgdbm.la \
libmonitor.la \
librecord.la \
libstruct.la \
$(NULL)
libelkdir = /usr/lib/elk
libbitstring_la_SOURCES = bitstring.c
libbitstring_la_LIBADD = $(top_builddir)/src/libelk.la
libelk_eval_la_SOURCES = elk-eval.c
libelk_eval_la_LIBADD = $(top_builddir)/src/libelk.la
libhack_la_SOURCES = hack.c
libhack_la_LIBADD = $(top_builddir)/src/libelk.la
libnewhandler_la_SOURCES = newhandler.c
libnewhandler_la_LIBADD = $(top_builddir)/src/libelk.la
libregexp_la_SOURCES = regexp.c
libregexp_la_LIBADD = $(top_builddir)/src/libelk.la
libdebug_la_SOURCES = debug.c
libdebug_la_LIBADD = $(top_builddir)/src/libelk.la
libgdbm_la_SOURCES = gdbm.c
libgdbm_la_LIBADD = $(top_builddir)/src/libelk.la -lgdbm
libmonitor_la_SOURCES = monitor.c
libmonitor_la_LIBADD = $(top_builddir)/src/libelk.la
librecord_la_SOURCES = record.c
librecord_la_LIBADD = $(top_builddir)/src/libelk.la
libstruct_la_SOURCES = struct.c
libstruct_la_LIBADD = $(top_builddir)/src/libelk.la

View File

@ -1,137 +0,0 @@
. ../../config/system
. ../../config/site
if [ _$gdbm = _yes ]; then
gdbm_c="gdbm.c"
gdbm_o="gdbm.o"
gdbm_so="gdbm.so"
else
gdbm_incl=
fi
echo Building Makefile.local...
cat <<EOT >Makefile.local
# This Makefile was produced by running ./build in this directory.
SHELL=/bin/sh
CC= ${cc-cc}
CFLAGS= $cflags $obj_cflags
LINTFLAGS= $lintflags
INC= ../../include
H= \$(INC)/compat.h\\
\$(INC)/config.h\\
\$(INC)/cstring.h\\
\$(INC)/exception.h\\
\$(INC)/extern.h\\
\$(INC)/funcproto.h\\
\$(INC)/gc.h\\
\$(INC)/misc.h\\
\$(INC)/object.h\\
\$(INC)/param.h\\
\$(INC)/stkmem.h\\
\$(INC)/type.h
C= bitstring.c\\
debug.c\\
elk-eval.c\\
hack.c\\
monitor.c\\
newhandler.c\\
record.c\\
regexp.c\\
struct.c $gdbm_c
O= bitstring.o\\
debug.o\\
elk-eval.o\\
hack.o\\
monitor.o\\
newhandler.o\\
record.o\\
regexp.o\\
struct.o $gdbm_o
SO= bitstring.so\\
debug.so\\
elk-eval.so\\
hack.so\\
monitor.so\\
newhandler.so\\
record.so\\
regexp.so\\
struct.so $gdbm_so
.c.o:
\$(CC) \$(CFLAGS) -I\$(INC) $gdbm_incl -c \$<
../../scripts/makedl \$@ \$@
all: \$(SO)
bitstring.o: \$(H) bitstring.c
debug.o: \$(H) debug.c
elk-eval.o: \$(H) elk-eval.c
hack.o: \$(H) hack.c
monitor.o: \$(H) monitor.c
newhandler.o: \$(H) newhandler.c
record.o: \$(H) record.c
regexp.o: \$(H) regexp.c
struct.o: \$(H) struct.c
gdbm.o: \$(H) gdbm.c
bitstring.so: bitstring.o
gcc -shared -o \$@ \$< -lc
debug.so: debug.o
gcc -shared -o \$@ \$< -lc
elk-eval.so: elk-eval.o
gcc -shared -o \$@ \$< -lc
hack.so: hack.o
gcc -shared -o \$@ \$< -lc
monitor.so: monitor.o
gcc -shared -o \$@ \$< -lc
newhandler.so: newhandler.o
gcc -shared -o \$@ \$< -lc
record.so: record.o
gcc -shared -o \$@ \$< -lc
regexp.so: regexp.o
gcc -shared -o \$@ \$< -lc
struct.so: struct.o
gcc -shared -o \$@ \$< -lc
gdbm.so: gdbm.o
gcc -shared -o \$@ \$< -lgdbm -lc
install: \$(SO)
-@if [ ! -d $install_dir/lib ]; then \\
echo mkdir $install_dir/lib; \\
mkdir $install_dir/lib; \\
fi
-@if [ ! -d $install_dir/lib/elk ]; then \\
echo mkdir $install_dir/lib/elk; \\
mkdir $install_dir/lib/elk; \\
fi
@for i in \$(SO) ;\\
do \\
echo cp \$\$i $install_dir/lib/elk; \\
cp \$\$i $install_dir/lib/elk; \\
done
lint:
lint \$(LINTFLAGS) -I\$(INC) $gdbm_incl \$(C)
clean:
rm -f *.so *.o core
distclean:
rm -f *.so *.o core lint.out Makefile.local
EOT

View File

@ -41,6 +41,6 @@ libelk_la_SOURCES = \
$(NULL)
bin_PROGRAMS = elk
elk_LDADD = libelk.la
elk_LDADD = $(top_builddir)/src/libelk.la
elk_SOURCES = main.c