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-27 16:49:47 -04:00
|
|
|
SUBDIRS-$(CONFIG_BOOKMARKS) += bookmarks
|
|
|
|
SUBDIRS-$(CONFIG_COOKIES) += cookies
|
|
|
|
SUBDIRS-$(CONFIG_FORMHIST) += formhist
|
|
|
|
SUBDIRS-$(CONFIG_GLOBHIST) += globhist
|
|
|
|
SUBDIRS-$(CONFIG_ECMASCRIPT) += ecmascript
|
|
|
|
SUBDIRS-$(CONFIG_SCRIPTING) += scripting
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
SUBDIRS = \
|
|
|
|
bfu \
|
|
|
|
cache \
|
|
|
|
config \
|
|
|
|
dialogs \
|
|
|
|
document \
|
|
|
|
encoding \
|
|
|
|
intl \
|
|
|
|
main \
|
|
|
|
mime \
|
|
|
|
network \
|
|
|
|
osdep \
|
|
|
|
protocol \
|
|
|
|
session \
|
|
|
|
terminal \
|
|
|
|
util \
|
|
|
|
viewer
|
|
|
|
|
2005-09-17 08:45:59 -04:00
|
|
|
# Get the GIT HEAD ID if possible
|
2005-09-19 05:04:03 -04:00
|
|
|
ifdef CG_COMMIT_ID
|
|
|
|
BUILD_ID=$(shell $(CG_COMMIT_ID) 2> /dev/null)
|
2005-09-17 08:45:59 -04:00
|
|
|
endif
|
2005-09-17 10:21:35 -04:00
|
|
|
INCLUDES += -DBUILD_ID="\"$(BUILD_ID)\""
|
2005-09-17 08:45:59 -04:00
|
|
|
|
2005-09-27 16:38:00 -04:00
|
|
|
OBJS = vernum.o
|
2005-09-16 07:13:22 -04:00
|
|
|
vernum.o: FORCE
|
|
|
|
FORCE:
|
|
|
|
|
2005-09-27 15:11:28 -04:00
|
|
|
all-local: elinks
|
2005-09-27 16:38:00 -04:00
|
|
|
elinks: lib.o
|
2005-09-16 07:13:22 -04:00
|
|
|
$(call cmd,link)
|
|
|
|
|
2005-09-27 15:42:52 -04:00
|
|
|
install-local:
|
2005-09-28 15:43:09 -04:00
|
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
|
2005-09-22 08:50:59 -04:00
|
|
|
$(INSTALL_PROGRAM) elinks $(DESTDIR)$(bindir)
|
2005-09-17 14:37:23 -04:00
|
|
|
|
2005-09-16 07:13:22 -04:00
|
|
|
include $(path_to_top)/Makefile.lib
|
2005-09-27 16:38:00 -04:00
|
|
|
|