2005-09-16 07:13:22 -04:00
|
|
|
path_to_top=..
|
|
|
|
include $(path_to_top)/Makefile.config
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2005-09-16 07:13:22 -04:00
|
|
|
ifeq ($(CONFIG_BOOKMARKS),yes)
|
2005-09-15 09:58:31 -04:00
|
|
|
bookmarksdir = bookmarks
|
|
|
|
bookmarkslib = $(bookmarksdir)/libbookmarks.a
|
|
|
|
endif
|
|
|
|
|
2005-09-16 07:13:22 -04:00
|
|
|
ifeq ($(CONFIG_COOKIES),yes)
|
2005-09-15 09:58:31 -04:00
|
|
|
cookiesdir = cookies
|
|
|
|
cookieslib = $(cookiesdir)/libcookies.a
|
|
|
|
endif
|
|
|
|
|
2005-09-16 07:13:22 -04:00
|
|
|
ifeq ($(CONFIG_FORMHIST),yes)
|
2005-09-15 09:58:31 -04:00
|
|
|
formhistdir = formhist
|
|
|
|
formhistlib = $(formhistdir)/libformhist.a
|
|
|
|
endif
|
|
|
|
|
2005-09-16 07:13:22 -04:00
|
|
|
ifeq ($(CONFIG_GLOBHIST),yes)
|
2005-09-15 09:58:31 -04:00
|
|
|
globhistdir = globhist
|
|
|
|
globhistlib = $(globhistdir)/libglobhist.a
|
|
|
|
endif
|
|
|
|
|
2005-09-16 07:13:22 -04:00
|
|
|
ifeq ($(CONFIG_ECMASCRIPT),yes)
|
2005-09-15 09:58:31 -04:00
|
|
|
ecmascriptdir = ecmascript
|
|
|
|
ecmascriptlib = $(ecmascriptdir)/libecmascript.a
|
|
|
|
endif
|
|
|
|
|
2005-09-16 07:13:22 -04:00
|
|
|
ifeq ($(CONFIG_SCRIPTING),yes)
|
2005-09-15 09:58:31 -04:00
|
|
|
scriptingdir = scripting
|
|
|
|
scriptinglib = $(scriptingdir)/libscripting.a
|
|
|
|
endif
|
|
|
|
|
|
|
|
SUBDIRS = \
|
|
|
|
bfu \
|
|
|
|
$(bookmarksdir) \
|
|
|
|
cache \
|
|
|
|
config \
|
|
|
|
$(cookiesdir) \
|
|
|
|
dialogs \
|
|
|
|
document \
|
|
|
|
$(ecmascriptdir) \
|
|
|
|
encoding \
|
|
|
|
$(formhistdir) \
|
|
|
|
$(globhistdir) \
|
|
|
|
intl \
|
|
|
|
main \
|
|
|
|
mime \
|
|
|
|
network \
|
|
|
|
osdep \
|
|
|
|
protocol \
|
|
|
|
$(scriptingdir) \
|
|
|
|
session \
|
|
|
|
terminal \
|
|
|
|
util \
|
|
|
|
viewer
|
|
|
|
|
|
|
|
# Order of this is purely magic and random, so that ld doesn't fail for some
|
|
|
|
# strange reason. Try to swap randomly when ld will start to complain about
|
|
|
|
# mysteriously unresolved symbols.
|
2005-09-16 07:13:22 -04:00
|
|
|
ELINKSLIBS = \
|
2005-09-15 09:58:31 -04:00
|
|
|
main/libmain.a \
|
|
|
|
$(cookieslib) \
|
|
|
|
viewer/libviewer.a \
|
|
|
|
cache/libcache.a \
|
|
|
|
document/libdocument.a \
|
|
|
|
intl/libintl.a \
|
|
|
|
session/libsession.a \
|
|
|
|
network/libnetwork.a \
|
|
|
|
terminal/libterminal.a \
|
|
|
|
$(scriptinglib) \
|
|
|
|
osdep/libosdep.a \
|
|
|
|
protocol/libprotocol.a \
|
|
|
|
$(bookmarkslib) \
|
|
|
|
$(formhistlib) \
|
|
|
|
$(globhistlib) \
|
|
|
|
$(ecmascriptlib) \
|
|
|
|
config/libconfig.a \
|
|
|
|
dialogs/libdialogs.a \
|
|
|
|
mime/libmime.a \
|
|
|
|
bfu/libbfu.a \
|
|
|
|
encoding/libencoding.a \
|
2005-09-16 08:29:41 -04:00
|
|
|
$(INTLLIBS) \
|
2005-09-15 09:58:31 -04:00
|
|
|
util/libutil.a
|
|
|
|
|
2005-09-17 08:45:59 -04:00
|
|
|
# Get the GIT HEAD ID if possible
|
|
|
|
ifdef COMMIT_ID
|
|
|
|
INCLUDES += -DBUILD_ID="\"$$($(COMMIT_ID) 2> /dev/null)\""
|
|
|
|
endif
|
|
|
|
|
2005-09-16 07:13:22 -04:00
|
|
|
OBJS = vernum.o
|
|
|
|
vernum.o: FORCE
|
|
|
|
FORCE:
|
|
|
|
|
|
|
|
all-l: elinks
|
|
|
|
elinks: $(OBJS) $(ELINKSLIBS)
|
|
|
|
$(call cmd,link)
|
|
|
|
|
|
|
|
include $(path_to_top)/Makefile.lib
|