mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
94 lines
2.7 KiB
Makefile
94 lines
2.7 KiB
Makefile
#
|
|
# Makefile
|
|
#
|
|
# The global Makefile for POCO [generated by mkrelease]
|
|
#
|
|
|
|
sinclude config.make
|
|
|
|
ifndef POCO_BASE
|
|
$(warning WARNING: POCO_BASE is not defined. Assuming current directory.)
|
|
export POCO_BASE=$(shell pwd)
|
|
endif
|
|
|
|
ifndef POCO_PREFIX
|
|
export POCO_PREFIX=/usr/local
|
|
endif
|
|
|
|
.PHONY: all libexecs cppunit tests samples install
|
|
|
|
all: libexecs tests samples
|
|
|
|
INSTALLDIR = $(DESTDIR)$(POCO_PREFIX)
|
|
COMPONENTS = Foundation XML Util Net NetSSL_OpenSSL
|
|
|
|
cppunit:
|
|
$(MAKE) -C $(POCO_BASE)/CppUnit
|
|
|
|
install: libexecs
|
|
mkdir -p $(INSTALLDIR)/include/Poco
|
|
mkdir -p $(INSTALLDIR)/lib
|
|
mkdir -p $(INSTALLDIR)/bin
|
|
for comp in $(COMPONENTS) ; do \
|
|
if [ -d "$(POCO_BASE)/$$comp/include" ] ; then \
|
|
cp -Rf $(POCO_BASE)/$$comp/include/* $(INSTALLDIR)/include/ ; \
|
|
fi ; \
|
|
if [ -d "$(POCO_BASE)/$$comp/bin" ] ; then \
|
|
find $(POCO_BASE)/$$comp/bin -perm -700 -type f -exec cp -Rf {} $(INSTALLDIR)/bin \; ; \
|
|
fi ; \
|
|
done
|
|
find $(POCO_BASE)/lib -name "libPoco*" -exec cp -Rf {} $(INSTALLDIR)/lib \;
|
|
|
|
.PHONY: Foundation-libexec XML-libexec Util-libexec Net-libexec NetSSL_OpenSSL-libexec
|
|
.PHONY: Foundation-tests XML-tests Util-tests Net-tests NetSSL_OpenSSL-tests
|
|
.PHONY: Foundation-samples XML-samples Util-samples Net-samples NetSSL_OpenSSL-samples
|
|
|
|
libexecs: Foundation-libexec XML-libexec Util-libexec Net-libexec NetSSL_OpenSSL-libexec
|
|
tests: Foundation-tests XML-tests Util-tests Net-tests NetSSL_OpenSSL-tests
|
|
samples: Foundation-samples XML-samples Util-samples Net-samples NetSSL_OpenSSL-samples
|
|
|
|
Foundation-libexec:
|
|
$(MAKE) -C $(POCO_BASE)/Foundation
|
|
|
|
Foundation-tests: Foundation-libexec cppunit
|
|
$(MAKE) -C $(POCO_BASE)/Foundation/testsuite
|
|
|
|
Foundation-samples: Foundation-libexec
|
|
$(MAKE) -C $(POCO_BASE)/Foundation/samples
|
|
|
|
XML-libexec: Foundation-libexec
|
|
$(MAKE) -C $(POCO_BASE)/XML
|
|
|
|
XML-tests: XML-libexec cppunit
|
|
$(MAKE) -C $(POCO_BASE)/XML/testsuite
|
|
|
|
XML-samples: XML-libexec
|
|
$(MAKE) -C $(POCO_BASE)/XML/samples
|
|
|
|
Util-libexec: Foundation-libexec XML-libexec
|
|
$(MAKE) -C $(POCO_BASE)/Util
|
|
|
|
Util-tests: Util-libexec cppunit
|
|
$(MAKE) -C $(POCO_BASE)/Util/testsuite
|
|
|
|
Util-samples: Util-libexec
|
|
$(MAKE) -C $(POCO_BASE)/Util/samples
|
|
|
|
Net-libexec: Foundation-libexec
|
|
$(MAKE) -C $(POCO_BASE)/Net
|
|
|
|
Net-tests: Net-libexec cppunit
|
|
$(MAKE) -C $(POCO_BASE)/Net/testsuite
|
|
|
|
Net-samples: Net-libexec Foundation-libexec XML-libexec Util-libexec
|
|
$(MAKE) -C $(POCO_BASE)/Net/samples
|
|
|
|
NetSSL_OpenSSL-libexec: Foundation-libexec Net-libexec Util-libexec
|
|
$(MAKE) -C $(POCO_BASE)/NetSSL_OpenSSL
|
|
|
|
NetSSL_OpenSSL-tests: NetSSL_OpenSSL-libexec cppunit
|
|
$(MAKE) -C $(POCO_BASE)/NetSSL_OpenSSL/testsuite
|
|
|
|
NetSSL_OpenSSL-samples: NetSSL_OpenSSL-libexec
|
|
$(MAKE) -C $(POCO_BASE)/NetSSL_OpenSSL/samples
|