mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Converted another bunch of submakefiles to ELBuild
This commit is contained in:
parent
39bddb7562
commit
1f0cd14e91
28
configure.in
28
configure.in
@ -1274,13 +1274,6 @@ AC_OUTPUT([ \
|
||||
src/cookies/Makefile \
|
||||
src/dialogs/Makefile \
|
||||
src/document/Makefile \
|
||||
src/document/css/Makefile \
|
||||
src/document/dom/Makefile \
|
||||
src/document/html/Makefile \
|
||||
src/document/html/parser/Makefile \
|
||||
src/document/plain/Makefile \
|
||||
src/document/sgml/Makefile \
|
||||
src/document/sgml/html/Makefile \
|
||||
src/encoding/Makefile \
|
||||
src/intl/Makefile \
|
||||
src/intl/gettext/Makefile \
|
||||
@ -1290,34 +1283,13 @@ AC_OUTPUT([ \
|
||||
src/mime/Makefile \
|
||||
src/mime/backend/Makefile \
|
||||
src/network/Makefile \
|
||||
src/network/ssl/Makefile \
|
||||
src/osdep/Makefile \
|
||||
src/osdep/beos/Makefile \
|
||||
src/osdep/os2/Makefile \
|
||||
src/osdep/riscos/Makefile \
|
||||
src/osdep/unix/Makefile \
|
||||
src/osdep/win32/Makefile \
|
||||
src/protocol/Makefile \
|
||||
src/protocol/auth/Makefile \
|
||||
src/protocol/bittorrent/Makefile \
|
||||
src/protocol/file/Makefile \
|
||||
src/protocol/finger/Makefile \
|
||||
src/protocol/ftp/Makefile \
|
||||
src/protocol/gopher/Makefile \
|
||||
src/protocol/http/Makefile \
|
||||
src/protocol/nntp/Makefile \
|
||||
src/protocol/rewrite/Makefile \
|
||||
src/protocol/smb/Makefile \
|
||||
src/scripting/Makefile \
|
||||
src/scripting/guile/Makefile \
|
||||
src/scripting/lua/Makefile \
|
||||
src/scripting/perl/Makefile \
|
||||
src/scripting/python/Makefile \
|
||||
src/scripting/ruby/Makefile \
|
||||
src/terminal/Makefile \
|
||||
src/util/Makefile \
|
||||
src/viewer/Makefile \
|
||||
src/viewer/dump/Makefile \
|
||||
src/viewer/text/Makefile
|
||||
])
|
||||
|
||||
|
9
src/document/css/Makefile
Normal file
9
src/document/css/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = apply.o css.o parser.o property.o scanner.o stylesheet.o value.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,31 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.11 2004/08/14 21:12:37 miciah Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/document/ at all, and we can't
|
||||
# merge the whole library of these with libdocument.a. So we only compile
|
||||
# objects here and link them directly to libdocument.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convince
|
||||
# automake to compile the objects :/. We DON'T use libcss.a ANYWHERE.
|
||||
|
||||
EXTRA_DIST = README
|
||||
|
||||
noinst_LIBRARIES = libcss.a
|
||||
libcss_a_SOURCES = \
|
||||
apply.c \
|
||||
apply.h \
|
||||
css.c \
|
||||
css.h \
|
||||
parser.c \
|
||||
parser.h \
|
||||
property.c \
|
||||
property.h \
|
||||
scanner.c \
|
||||
scanner.h \
|
||||
stylesheet.c \
|
||||
stylesheet.h \
|
||||
value.c \
|
||||
value.h
|
||||
|
9
src/document/dom/Makefile
Normal file
9
src/document/dom/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = navigator.o node.o renderer.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,20 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.3 2004/09/29 22:38:51 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/document/ at all, and we can't
|
||||
# merge the whole library of these with libdocument.a. So we only compile
|
||||
# objects here and link them directly to libdocument.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convience
|
||||
# automake to compile the objects :/. We DON'T use libcss.a ANYWHERE.
|
||||
|
||||
noinst_LIBRARIES = libdom.a
|
||||
libdom_a_SOURCES = \
|
||||
navigator.c \
|
||||
navigator.h \
|
||||
node.c \
|
||||
node.h \
|
||||
renderer.c \
|
||||
renderer.h
|
11
src/document/html/Makefile
Normal file
11
src/document/html/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
SUBDIRS = parser
|
||||
|
||||
OBJS = frames.o parser.o renderer.o tables.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,28 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.18 2004/08/14 21:12:38 miciah Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/document/ at all, and we can't
|
||||
# merge the whole library of these with libdocument.a. So we only compile
|
||||
# objects here and link them directly to libdocument.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convince
|
||||
# automake to compile the objects :/. We DON'T use libhtml.a ANYWHERE.
|
||||
|
||||
EXTRA_DIST = TODO
|
||||
|
||||
SUBDIRS = parser
|
||||
|
||||
noinst_LIBRARIES = libhtml.a
|
||||
libhtml_a_SOURCES = \
|
||||
frames.c \
|
||||
frames.h \
|
||||
internal.h \
|
||||
parser.c \
|
||||
parser.h \
|
||||
renderer.c \
|
||||
renderer.h \
|
||||
tables.c \
|
||||
tables.h
|
||||
|
9
src/document/html/parser/Makefile
Normal file
9
src/document/html/parser/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = forms.o general.o link.o parse.o stack.o table.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,27 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.7 2005/07/15 04:37:55 miciah Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/document/ at all, and we can't
|
||||
# merge the whole library of these with libdocument.a. So we only compile
|
||||
# objects here and link them directly to libdocument.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convince
|
||||
# automake to compile the objects :/. We DON'T use libhtmlp.a ANYWHERE.
|
||||
|
||||
noinst_LIBRARIES = libhtmlp.a
|
||||
libhtmlp_a_SOURCES = \
|
||||
forms.c \
|
||||
forms.h \
|
||||
general.c \
|
||||
general.h \
|
||||
link.c \
|
||||
link.h \
|
||||
parse.c \
|
||||
parse.h \
|
||||
stack.c \
|
||||
stack.h \
|
||||
table.c \
|
||||
table.h
|
||||
|
9
src/document/plain/Makefile
Normal file
9
src/document/plain/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = renderer.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,10 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.1 2003/11/10 21:29:30 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
noinst_LIBRARIES = libplain_document.a
|
||||
libplain_document_a_SOURCES = \
|
||||
renderer.c \
|
||||
renderer.h
|
||||
|
11
src/document/sgml/Makefile
Normal file
11
src/document/sgml/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
SUBDIRS = html
|
||||
|
||||
OBJS = sgml.o parser.o scanner.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,24 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.3 2004/09/29 22:38:52 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/document/ at all, and we can't
|
||||
# merge the whole library of these with libdocument.a. So we only compile
|
||||
# objects here and link them directly to libdocument.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convience
|
||||
# automake to compile the objects :/. We DON'T use libcss.a ANYWHERE.
|
||||
|
||||
SUBDIRS = html
|
||||
|
||||
EXTRA_DIST = README
|
||||
|
||||
noinst_LIBRARIES = libsgml.a
|
||||
libsgml_a_SOURCES = \
|
||||
parser.c \
|
||||
parser.h \
|
||||
scanner.c \
|
||||
scanner.h \
|
||||
sgml.c \
|
||||
sgml.h
|
9
src/document/sgml/html/Makefile
Normal file
9
src/document/sgml/html/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = html.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,18 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.2 2004/09/24 00:44:59 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/document/ at all, and we can't
|
||||
# merge the whole library of these with libdocument.a. So we only compile
|
||||
# objects here and link them directly to libdocument.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convience
|
||||
# automake to compile the objects :/. We DON'T use libcss.a ANYWHERE.
|
||||
|
||||
noinst_LIBRARIES = libhtml.a
|
||||
libhtml_a_SOURCES = \
|
||||
attribute.inc \
|
||||
element.inc \
|
||||
html.c \
|
||||
html.h
|
11
src/network/ssl/Makefile
Normal file
11
src/network/ssl/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS)
|
||||
|
||||
OBJS = ssl.o socket.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,16 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.7 2005/06/12 02:26:49 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
EXTRA_DIST = TODO
|
||||
|
||||
INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS)
|
||||
|
||||
noinst_LIBRARIES = libssl.a
|
||||
libssl_a_SOURCES = \
|
||||
socket.c \
|
||||
socket.h \
|
||||
ssl.c \
|
||||
ssl.h
|
||||
|
9
src/osdep/beos/Makefile
Normal file
9
src/osdep/beos/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = beos.o overrides.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,19 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.3 2004/08/14 21:12:40 miciah Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/osdep/ at all, and we can't
|
||||
# merge the whole library of these with libosdep.a. So we only compile
|
||||
# objects here and link them directly to libosdep.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convince
|
||||
# automake to compile the objects :/. We DON'T use libsystem.a ANYWHERE.
|
||||
|
||||
noinst_LIBRARIES = libsystem.a
|
||||
libsystem_a_SOURCES = \
|
||||
beos.c \
|
||||
beos.h \
|
||||
overrides.c \
|
||||
overrides.h \
|
||||
sysinfo.h
|
9
src/osdep/os2/Makefile
Normal file
9
src/osdep/os2/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = os2.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,17 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.3 2004/08/14 21:12:41 miciah Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/osdep/ at all, and we can't
|
||||
# merge the whole library of these with libosdep.a. So we only compile
|
||||
# objects here and link them directly to libosdep.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convince
|
||||
# automake to compile the objects :/. We DON'T use libsystem.a ANYWHERE.
|
||||
|
||||
noinst_LIBRARIES = libsystem.a
|
||||
libsystem_a_SOURCES = \
|
||||
os2.c \
|
||||
os2.h \
|
||||
sysinfo.h
|
9
src/osdep/riscos/Makefile
Normal file
9
src/osdep/riscos/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = riscos.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,17 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.3 2004/08/14 21:12:43 miciah Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/osdep/ at all, and we can't
|
||||
# merge the whole library of these with libosdep.a. So we only compile
|
||||
# objects here and link them directly to libosdep.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convince
|
||||
# automake to compile the objects :/. We DON'T use libsystem.a ANYWHERE.
|
||||
|
||||
noinst_LIBRARIES = libsystem.a
|
||||
libsystem_a_SOURCES = \
|
||||
riscos.c \
|
||||
riscos.h \
|
||||
sysinfo.h
|
9
src/osdep/unix/Makefile
Normal file
9
src/osdep/unix/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = unix.o bsd.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,18 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.6 2005/07/20 15:41:33 witekfl Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/osdep/ at all, and we can't
|
||||
# merge the whole library of these with libosdep.a. So we only compile
|
||||
# objects here and link them directly to libosdep.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convince
|
||||
# automake to compile the objects :/. We DON'T use libsystem.a ANYWHERE.
|
||||
|
||||
noinst_LIBRARIES = libsystem.a
|
||||
libsystem_a_SOURCES = \
|
||||
bsd.c \
|
||||
sysinfo.h \
|
||||
unix.c \
|
||||
unix.h
|
9
src/osdep/win32/Makefile
Normal file
9
src/osdep/win32/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = win32.o overrides.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,19 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.5 2005/02/05 05:26:40 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# We don't want to expose this outside of /src/osdep/ at all, and we can't
|
||||
# merge the whole library of these with libosdep.a. So we only compile
|
||||
# objects here and link them directly to libosdep.a in ../Makefile.am.
|
||||
|
||||
# However, we apparently need to create the library in order to convince
|
||||
# automake to compile the objects :/. We DON'T use libsystem.a ANYWHERE.
|
||||
|
||||
noinst_LIBRARIES = libsystem.a
|
||||
libsystem_a_SOURCES = \
|
||||
overrides.c \
|
||||
overrides.h \
|
||||
sysinfo.h \
|
||||
win32.c \
|
||||
win32.h
|
12
src/protocol/auth/Makefile
Normal file
12
src/protocol/auth/Makefile
Normal file
@ -0,0 +1,12 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
# Needed for the digest MD5 sum calculation.
|
||||
INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS)
|
||||
|
||||
OBJS = auth.o dialogs.o digest.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,16 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.7 2005/01/13 15:55:57 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
# Needed for the digest MD5 sum calculation.
|
||||
INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS)
|
||||
|
||||
noinst_LIBRARIES = libauth.a
|
||||
libauth_a_SOURCES = \
|
||||
auth.h \
|
||||
auth.c \
|
||||
dialogs.h \
|
||||
dialogs.c \
|
||||
digest.c \
|
||||
digest.h
|
11
src/protocol/bittorrent/Makefile
Normal file
11
src/protocol/bittorrent/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS)
|
||||
|
||||
OBJS = bencoding.o bittorrent.o common.o connection.o dialogs.o peerconnect.o peerwire.o piececache.o tracker.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,28 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.3 2005/07/21 08:23:07 zas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS)
|
||||
|
||||
noinst_LIBRARIES = libbittorrent.a
|
||||
|
||||
libbittorrent_a_SOURCES = \
|
||||
bencoding.c \
|
||||
bencoding.h \
|
||||
bittorrent.c \
|
||||
bittorrent.h \
|
||||
common.c \
|
||||
common.h \
|
||||
connection.c \
|
||||
connection.h \
|
||||
dialogs.c \
|
||||
dialogs.h \
|
||||
peerconnect.c \
|
||||
peerconnect.h \
|
||||
peerwire.c \
|
||||
peerwire.h \
|
||||
piececache.c \
|
||||
piececache.h \
|
||||
tracker.c \
|
||||
tracker.h
|
9
src/protocol/finger/Makefile
Normal file
9
src/protocol/finger/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = finger.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,10 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.1 2004/10/12 15:28:12 zas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
noinst_LIBRARIES = libfinger.a
|
||||
|
||||
libfinger_a_SOURCES = \
|
||||
finger.c \
|
||||
finger.h
|
9
src/protocol/ftp/Makefile
Normal file
9
src/protocol/ftp/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = ftp.o parse.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,12 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.3 2005/03/27 14:58:58 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
noinst_LIBRARIES = libftp.a
|
||||
libftp_a_SOURCES = \
|
||||
ftp.c \
|
||||
ftp.h \
|
||||
parse.c \
|
||||
parse.h
|
||||
|
9
src/protocol/gopher/Makefile
Normal file
9
src/protocol/gopher/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = gopher.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,10 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.1 2004/08/18 17:24:18 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
noinst_LIBRARIES = libgopher.a
|
||||
|
||||
libgopher_a_SOURCES = \
|
||||
gopher.c \
|
||||
gopher.h
|
9
src/protocol/http/Makefile
Normal file
9
src/protocol/http/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = blacklist.o codes.o http.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,16 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.17 2004/07/12 11:31:17 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
EXTRA_DIST = README.timegm
|
||||
|
||||
noinst_LIBRARIES = libhttp.a
|
||||
|
||||
libhttp_a_SOURCES = \
|
||||
blacklist.c \
|
||||
blacklist.h \
|
||||
codes.c \
|
||||
codes.h \
|
||||
http.c \
|
||||
http.h
|
9
src/protocol/nntp/Makefile
Normal file
9
src/protocol/nntp/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = nntp.o connection.o response.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,15 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.2 2005/04/21 02:36:41 jonas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
noinst_LIBRARIES = libnntp.a
|
||||
|
||||
libnntp_a_SOURCES = \
|
||||
codes.h \
|
||||
nntp.c \
|
||||
nntp.h \
|
||||
connection.c \
|
||||
connection.h \
|
||||
response.c \
|
||||
response.h
|
9
src/protocol/rewrite/Makefile
Normal file
9
src/protocol/rewrite/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = rewrite.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,10 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.2 2003/12/08 23:00:10 pasky Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
noinst_LIBRARIES = liburirewrite.a
|
||||
liburirewrite_a_SOURCES = \
|
||||
rewrite.c \
|
||||
rewrite.h
|
||||
|
9
src/protocol/smb/Makefile
Normal file
9
src/protocol/smb/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = smb.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,10 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.1 2003/12/07 16:45:17 pasky Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
noinst_LIBRARIES = libsmb.a
|
||||
libsmb_a_SOURCES = \
|
||||
smb.c \
|
||||
smb.h
|
||||
|
11
src/scripting/guile/Makefile
Normal file
11
src/scripting/guile/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
INCLUDES += $(GUILE_CFLAGS)
|
||||
|
||||
OBJS = guile.o hooks.o core.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,17 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.5 2005/04/01 17:36:46 zas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
EXTRA_DIST = README
|
||||
|
||||
INCLUDES += $(GUILE_CFLAGS)
|
||||
|
||||
noinst_LIBRARIES = libscriptingguile.a
|
||||
libscriptingguile_a_SOURCES = \
|
||||
core.c \
|
||||
core.h \
|
||||
hooks.c \
|
||||
hooks.h \
|
||||
guile.c \
|
||||
guile.h
|
11
src/scripting/lua/Makefile
Normal file
11
src/scripting/lua/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
INCLUDES += $(LUA_CFLAGS)
|
||||
|
||||
OBJS = lua.o hooks.o core.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,18 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.15 2005/04/01 09:41:37 zas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
EXTRA_DIST = TODO
|
||||
|
||||
INCLUDES += $(LUA_CFLAGS)
|
||||
|
||||
noinst_LIBRARIES = libscriptinglua.a
|
||||
libscriptinglua_a_SOURCES = \
|
||||
core.c \
|
||||
core.h \
|
||||
hooks.c \
|
||||
hooks.h \
|
||||
lua.c \
|
||||
lua.h
|
||||
|
11
src/scripting/perl/Makefile
Normal file
11
src/scripting/perl/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
INCLUDES += $(PERL_CFLAGS)
|
||||
|
||||
OBJS = perl.o hooks.o core.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,15 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.4 2005/04/01 09:47:28 zas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
INCLUDES += $(PERL_CFLAGS)
|
||||
|
||||
noinst_LIBRARIES = libscriptingperl.a
|
||||
libscriptingperl_a_SOURCES = \
|
||||
core.c \
|
||||
core.h \
|
||||
hooks.c \
|
||||
hooks.h \
|
||||
perl.c \
|
||||
perl.h
|
11
src/scripting/python/Makefile
Normal file
11
src/scripting/python/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
INCLUDES += $(PYTHON_CFLAGS)
|
||||
|
||||
OBJS = python.o hooks.o core.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,15 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.1 2005/06/02 18:01:34 witekfl Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
INCLUDES += $(PYTHON_CFLAGS)
|
||||
|
||||
noinst_LIBRARIES = libscriptingpython.a
|
||||
libscriptingpython_a_SOURCES = \
|
||||
core.c \
|
||||
core.h \
|
||||
hooks.c \
|
||||
hooks.h \
|
||||
python.c \
|
||||
python.h
|
11
src/scripting/ruby/Makefile
Normal file
11
src/scripting/ruby/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
INCLUDES += $(RUBY_CFLAGS)
|
||||
|
||||
OBJS = ruby.o hooks.o core.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,16 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.3 2005/04/01 17:20:59 zas Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
INCLUDES += $(RUBY_CFLAGS)
|
||||
|
||||
noinst_LIBRARIES = libscriptingruby.a
|
||||
libscriptingruby_a_SOURCES = \
|
||||
core.c \
|
||||
core.h \
|
||||
hooks.c \
|
||||
hooks.h \
|
||||
ruby.c \
|
||||
ruby.h
|
||||
|
9
src/viewer/dump/Makefile
Normal file
9
src/viewer/dump/Makefile
Normal file
@ -0,0 +1,9 @@
|
||||
path_to_top=../../..
|
||||
include $(path_to_top)/Makefile.config
|
||||
|
||||
OBJS = dump.o
|
||||
|
||||
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
||||
all-l: $(OBJS)
|
||||
|
||||
include $(path_to_top)/Makefile.lib
|
@ -1,10 +0,0 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
## $Id: Makefile.am,v 1.2 2003/01/01 17:48:46 pasky Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.base
|
||||
|
||||
noinst_LIBRARIES = libviewer_dump.a
|
||||
libviewer_dump_a_SOURCES = \
|
||||
dump.c \
|
||||
dump.h
|
||||
|
Loading…
Reference in New Issue
Block a user