1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00

ELBuildized viewer/.

This commit is contained in:
Petr Baudis 2005-09-16 13:33:43 +02:00
parent c89190e0bf
commit 3e394f3367
5 changed files with 40 additions and 62 deletions

View File

@ -1329,9 +1329,7 @@ AC_OUTPUT([ \
src/intl/gettext/ref-add.sed \
src/intl/gettext/ref-del.sed \
src/mime/Makefile \
src/mime/backend/Makefile \
src/viewer/Makefile \
src/viewer/text/Makefile
src/mime/backend/Makefile
])

26
src/viewer/Makefile Normal file
View File

@ -0,0 +1,26 @@
path_to_top=../..
include $(path_to_top)/Makefile.config
SUBDIRS = dump text
ifeq ($(CONFIG_MARKS),yes)
marksobj = text/marks.o
endif
OBJS = \
action.o \
timer.o \
dump/dump.o \
text/draw.o \
text/form.o \
text/link.o \
$(marksobj) \
text/search.o \
text/textarea.o \
text/view.o \
text/vs.o
all-l: libviewer.a
libviewer.a: $(OBJS)
include $(path_to_top)/Makefile.lib

View File

@ -1,29 +0,0 @@
## Process this file with automake to produce Makefile.in
## $Id: Makefile.am,v 1.3 2005/06/13 21:21:10 jonas Exp $
include $(top_srcdir)/Makefile.base
SUBDIRS = dump text
if CONFIG_MARKS
marksobj = text/marks.o
endif
noinst_LIBRARIES = libviewer.a
libviewer_a_LIBADD = \
dump/dump.o \
text/draw.o \
text/form.o \
text/link.o \
$(marksobj) \
text/search.o \
text/textarea.o \
text/view.o \
text/vs.o
libviewer_a_SOURCES = \
action.c \
action.h \
timer.c \
timer.h

13
src/viewer/text/Makefile Normal file
View File

@ -0,0 +1,13 @@
path_to_top=../../..
include $(path_to_top)/Makefile.config
ifeq ($(CONFIG_MARKS),yes)
marksobj = marks.o
endif
OBJS = draw.o form.o link.o $(marksobj) search.o textarea.o view.o vs.o
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
all-l: $(OBJS)
include $(path_to_top)/Makefile.lib

View File

@ -1,30 +0,0 @@
## Process this file with automake to produce Makefile.in
## $Id: Makefile.am,v 1.10 2004/06/23 08:16:23 jonas Exp $
include $(top_srcdir)/Makefile.base
if CONFIG_MARKS
marksobj = marks.o
endif
noinst_LIBRARIES = libviewer_text.a
EXTRA_libviewer_text_a_SOURCES = marks.c marks.h
libviewer_text_a_LIBADD = $(marksobj)
libviewer_text_a_SOURCES = \
draw.c \
draw.h \
form.c \
form.h \
link.c \
link.h \
search.c \
search.h \
textarea.c \
textarea.h \
view.c \
view.h \
vs.c \
vs.h