mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
Converted main, network and terminal to ELBuild.
This commit is contained in:
parent
568fe503f9
commit
98dd1a4fef
@ -1328,13 +1328,9 @@ AC_OUTPUT([ \
|
|||||||
src/intl/Makefile \
|
src/intl/Makefile \
|
||||||
src/intl/gettext/ref-add.sed \
|
src/intl/gettext/ref-add.sed \
|
||||||
src/intl/gettext/ref-del.sed \
|
src/intl/gettext/ref-del.sed \
|
||||||
src/main/Makefile \
|
|
||||||
src/mime/Makefile \
|
src/mime/Makefile \
|
||||||
src/mime/backend/Makefile \
|
src/mime/backend/Makefile \
|
||||||
src/network/Makefile \
|
|
||||||
src/osdep/Makefile \
|
|
||||||
src/scripting/Makefile \
|
src/scripting/Makefile \
|
||||||
src/terminal/Makefile \
|
|
||||||
src/util/Makefile \
|
src/util/Makefile \
|
||||||
src/viewer/Makefile \
|
src/viewer/Makefile \
|
||||||
src/viewer/text/Makefile
|
src/viewer/text/Makefile
|
||||||
|
13
src/main/Makefile
Normal file
13
src/main/Makefile
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
path_to_top=../..
|
||||||
|
include $(path_to_top)/Makefile.config
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_INTERLINK),yes)
|
||||||
|
interlinkobj = interlink.o
|
||||||
|
endif
|
||||||
|
|
||||||
|
OBJS = event.o $(interlinkobj) main.o module.o select.o timer.o version.o
|
||||||
|
|
||||||
|
all-l: libmain.a
|
||||||
|
libmain.a: $(OBJS)
|
||||||
|
|
||||||
|
include $(path_to_top)/Makefile.lib
|
@ -1,32 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
## $Id: Makefile.am,v 1.27 2005/08/17 15:26:22 jonas Exp $
|
|
||||||
|
|
||||||
include $(top_srcdir)/Makefile.base
|
|
||||||
|
|
||||||
if CONFIG_INTERLINK
|
|
||||||
interlinkobj = interlink.o
|
|
||||||
endif
|
|
||||||
|
|
||||||
EXTRA_libmain_a_SOURCES = \
|
|
||||||
interlink.c \
|
|
||||||
interlink.h
|
|
||||||
|
|
||||||
libmain_a_LIBADD = \
|
|
||||||
$(interlinkobj)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libmain.a
|
|
||||||
libmain_a_SOURCES = \
|
|
||||||
event.c \
|
|
||||||
event.h \
|
|
||||||
main.c \
|
|
||||||
main.h \
|
|
||||||
module.c \
|
|
||||||
module.h \
|
|
||||||
object.h \
|
|
||||||
select.c \
|
|
||||||
select.h \
|
|
||||||
timer.c \
|
|
||||||
timer.h \
|
|
||||||
version.c \
|
|
||||||
version.h
|
|
||||||
|
|
16
src/network/Makefile
Normal file
16
src/network/Makefile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
path_to_top=../..
|
||||||
|
include $(path_to_top)/Makefile.config
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_SSL),yes)
|
||||||
|
ssldir = ssl
|
||||||
|
sslobj = $(ssldir)/ssl.o $(ssldir)/socket.o
|
||||||
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = $(ssldir)
|
||||||
|
|
||||||
|
OBJS = connection.o dns.o progress.o socket.o state.o $(sslobj)
|
||||||
|
|
||||||
|
all-l: libnetwork.a
|
||||||
|
libnetwork.a: $(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.10 2005/06/13 00:52:14 jonas Exp $
|
|
||||||
|
|
||||||
include $(top_srcdir)/Makefile.base
|
|
||||||
|
|
||||||
if CONFIG_SSL
|
|
||||||
ssldir = ssl
|
|
||||||
sslobj = $(ssldir)/ssl.o $(ssldir)/socket.o
|
|
||||||
endif
|
|
||||||
|
|
||||||
SUBDIRS = $(ssldir)
|
|
||||||
|
|
||||||
libnetwork_a_LIBADD = \
|
|
||||||
$(sslobj)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libnetwork.a
|
|
||||||
libnetwork_a_SOURCES = \
|
|
||||||
connection.c \
|
|
||||||
connection.h \
|
|
||||||
dns.c \
|
|
||||||
dns.h \
|
|
||||||
progress.c \
|
|
||||||
progress.h \
|
|
||||||
socket.c \
|
|
||||||
socket.h \
|
|
||||||
state.c \
|
|
||||||
state.h
|
|
||||||
|
|
23
src/terminal/Makefile
Normal file
23
src/terminal/Makefile
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
path_to_top=../..
|
||||||
|
include $(path_to_top)/Makefile.config
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_MOUSE),yes)
|
||||||
|
mouseobj = mouse.o
|
||||||
|
endif
|
||||||
|
|
||||||
|
OBJS = \
|
||||||
|
color.o \
|
||||||
|
draw.o \
|
||||||
|
event.o \
|
||||||
|
hardio.o \
|
||||||
|
kbd.o \
|
||||||
|
$(mouseobj) \
|
||||||
|
screen.o \
|
||||||
|
tab.o \
|
||||||
|
terminal.o \
|
||||||
|
window.o
|
||||||
|
|
||||||
|
all-l: libterminal.a
|
||||||
|
libterminal.a: $(OBJS)
|
||||||
|
|
||||||
|
include $(path_to_top)/Makefile.lib
|
@ -1,41 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
## $Id: Makefile.am,v 1.16 2005/09/14 12:50:15 zas Exp $
|
|
||||||
|
|
||||||
include $(top_srcdir)/Makefile.base
|
|
||||||
|
|
||||||
if CONFIG_MOUSE
|
|
||||||
mouseobj = mouse.o
|
|
||||||
endif
|
|
||||||
|
|
||||||
EXTRA_DIST = TODO
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libterminal.a
|
|
||||||
|
|
||||||
EXTRA_libterminal_a_SOURCES = \
|
|
||||||
mouse.c
|
|
||||||
libterminal_a_LIBADD = \
|
|
||||||
$(mouseobj)
|
|
||||||
|
|
||||||
libterminal_a_SOURCES = \
|
|
||||||
color.c \
|
|
||||||
color.h \
|
|
||||||
draw.c \
|
|
||||||
draw.h \
|
|
||||||
event.c \
|
|
||||||
event.h \
|
|
||||||
hardio.c \
|
|
||||||
hardio.h \
|
|
||||||
itrm.h \
|
|
||||||
kbd.c \
|
|
||||||
kbd.h \
|
|
||||||
key.inc \
|
|
||||||
mouse.h \
|
|
||||||
palette.inc \
|
|
||||||
screen.c \
|
|
||||||
screen.h \
|
|
||||||
tab.c \
|
|
||||||
tab.h \
|
|
||||||
terminal.c \
|
|
||||||
terminal.h \
|
|
||||||
window.c \
|
|
||||||
window.h
|
|
Loading…
x
Reference in New Issue
Block a user