1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

[makefile] compilation fix for libraries built in non-standard locations.

This commit is contained in:
Witold Filipczyk 2020-07-06 20:52:43 +02:00
parent 3737ee6d20
commit 39878b07b4
5 changed files with 7 additions and 0 deletions

View File

@ -1,6 +1,8 @@
top_builddir=../..
include $(top_builddir)/Makefile.config
INCLUDES += $(LIBDOM_CFLAGS)
SUBDIRS-$(CONFIG_CSS) += css
SUBDIRS-$(CONFIG_DOM) += dom
SUBDIRS-$(CONFIG_LIBDOM) += libdom

View File

@ -1,6 +1,7 @@
top_builddir=../../..
include $(top_builddir)/Makefile.config
INCLUDES += $(LIBDOM_CFLAGS)
OBJS = apply.o css.o parser.o property.o scanner.o stylesheet.o value.o
include $(top_srcdir)/Makefile.lib

View File

@ -1,6 +1,7 @@
top_builddir=../../..
include $(top_builddir)/Makefile.config
INCLUDES += $(LIBDOM_CFLAGS)
SUBDIRS = parser test
OBJS = frames.o parse-meta-refresh.o parser.o renderer.o tables.o

View File

@ -1,6 +1,7 @@
top_builddir=../../../..
include $(top_builddir)/Makefile.config
INCLUDES += $(LIBDOM_CFLAGS)
OBJS = forms.o general.o link.o parse.o stack.o table.o
include $(top_srcdir)/Makefile.lib

View File

@ -1,6 +1,8 @@
top_builddir=../..
include $(top_builddir)/Makefile.config
INCLUDES += $(LIBDOM_CFLAGS)
OBJS = download.o history.o location.o session.o task.o
include $(top_srcdir)/Makefile.lib