1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
ifeq ($(SRCDIR),)
updir = $(shell echo $(dir $(1)) | sed 's/.$$//')
SRCDIR := $(call updir,$(CURDIR))
BLDDIR := $(SRCDIR)
endif
SUBDIR := lib
include $(BLDDIR)/config.mk
# Build up SUBDIRS:
SUBDIRS =
SUBDIRS += util libutil
ifeq ($(ENABLE_CPLUSPLUS),yes)
SUBDIRS += libutil++
endif
ifeq ($(ENABLE_ABYSS_SERVER),yes)
SUBDIRS += abyss
ifeq ($(ENABLE_CPLUSPLUS),yes)
SUBDIRS += abyss++
endif
endif
ifeq ($(MUST_BUILD_WININET_CLIENT),yes)
SUBDIRS += wininet_transport
endif
ifeq ($(MUST_BUILD_CURL_CLIENT),yes)
SUBDIRS += curl_transport
endif
ifeq ($(MUST_BUILD_LIBWWW_CLIENT),yes)
SUBDIRS += libwww_transport
endif
ifeq ($(HAVE_OPENSSL),yes)
SUBDIRS += openssl
endif
default: all
.PHONY: all clean distclean tags distdir install check dep
all: $(SUBDIRS:%=%/all)
# Extra dependencies to make parallel make work in spite of all the submakes
# (See top level make file for details)
abyss/all curl_transport/all: $(BLDDIR)/version.h
abyss++/all: abyss/all
abyss/all expat/all libutil++/all: libutil/all
clean: $(SUBDIRS:%=%/clean) clean-common
distclean: $(SUBDIRS:%=%/distclean) distclean-common
tags: $(SUBDIRS:%=%/tags) TAGS
DISTFILES =
distdir: distdir-common
install: $(SUBDIRS:%=%/install)
uninstall: $(SUBDIRS:%=%/uninstall)
check:
dep: $(SUBDIRS:%=%/dep)
include $(SRCDIR)/common.mk
|