mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-11-02 19:48:00 +00:00
add Encodings to Makefile
This commit is contained in:
24
Makefile
24
Makefile
@@ -64,7 +64,7 @@ all: libexecs tests samples
|
|||||||
|
|
||||||
INSTALLDIR = $(DESTDIR)$(POCO_PREFIX)
|
INSTALLDIR = $(DESTDIR)$(POCO_PREFIX)
|
||||||
|
|
||||||
COMPONENTS = CppUnit Foundation XML JSON Util Net Crypto NetSSL_OpenSSL
|
COMPONENTS = CppUnit Foundation Encodings XML JSON Util Net Crypto NetSSL_OpenSSL
|
||||||
COMPONENTS += SQL SQL/ODBC SQL/SQLite SQL/MySQL SQL/PostgreSQL
|
COMPONENTS += SQL SQL/ODBC SQL/SQLite SQL/MySQL SQL/PostgreSQL
|
||||||
COMPONENTS += MongoDB Redis Zip PageCompiler PageCompiler/File2Page CppParser
|
COMPONENTS += MongoDB Redis Zip PageCompiler PageCompiler/File2Page CppParser
|
||||||
|
|
||||||
@@ -104,22 +104,22 @@ endif
|
|||||||
find $(INSTALLDIR)/lib -name "libPoco*" -type l -exec rm -f {} \;
|
find $(INSTALLDIR)/lib -name "libPoco*" -type l -exec rm -f {} \;
|
||||||
|
|
||||||
# -------------------------------------------------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------------------------------------------------
|
||||||
libexecs = Foundation-libexec XML-libexec JSON-libexec Util-libexec Net-libexec Crypto-libexec NetSSL_OpenSSL-libexec
|
libexecs = Foundation-libexec Encodings-libexec XML-libexec JSON-libexec Util-libexec Net-libexec Crypto-libexec NetSSL_OpenSSL-libexec
|
||||||
libexecs += SQL-libexec SQL/ODBC-libexec SQL/SQLite-libexec SQL/MySQL-libexec SQL/PostgreSQL-libexec
|
libexecs += SQL-libexec SQL/ODBC-libexec SQL/SQLite-libexec SQL/MySQL-libexec SQL/PostgreSQL-libexec
|
||||||
libexecs += MongoDB-libexec Redis-libexec Zip-libexec PageCompiler-libexec PageCompiler/File2Page-libexec CppParser-libexec
|
libexecs += MongoDB-libexec Redis-libexec Zip-libexec PageCompiler-libexec PageCompiler/File2Page-libexec CppParser-libexec
|
||||||
|
|
||||||
# -------------------------------------------------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------------------------------------------------
|
||||||
tests = Foundation-tests XML-tests JSON-tests Util-tests Net-tests Crypto-tests NetSSL_OpenSSL-tests
|
tests = Foundation-tests Encodings-tests XML-tests JSON-tests Util-tests Net-tests Crypto-tests NetSSL_OpenSSL-tests
|
||||||
tests += SQL-tests SQL/ODBC-tests SQL/SQLite-tests SQL/MySQL-tests SQL/PostgreSQL-tests
|
tests += SQL-tests SQL/ODBC-tests SQL/SQLite-tests SQL/MySQL-tests SQL/PostgreSQL-tests
|
||||||
tests += MongoDB-tests Redis-tests Zip-tests CppParser-tests
|
tests += MongoDB-tests Redis-tests Zip-tests CppParser-tests
|
||||||
|
|
||||||
# -------------------------------------------------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------------------------------------------------
|
||||||
samples = Foundation-samples XML-samples JSON-samples Util-samples Net-samples Crypto-samples NetSSL_OpenSSL-samples
|
samples = Foundation-samples Encodings-samples XML-samples JSON-samples Util-samples Net-samples Crypto-samples NetSSL_OpenSSL-samples
|
||||||
samples += SQL-samples
|
samples += SQL-samples
|
||||||
samples += MongoDB-samples Zip-samples PageCompiler-samples
|
samples += MongoDB-samples Zip-samples PageCompiler-samples
|
||||||
|
|
||||||
# -------------------------------------------------------------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------------------------------------------------------------
|
||||||
cleans = Foundation-clean XML-clean JSON-clean Util-clean Net-clean Crypto-clean NetSSL_OpenSSL-clean
|
cleans = Foundation-clean Encodings-clean XML-clean JSON-clean Util-clean Net-clean Crypto-clean NetSSL_OpenSSL-clean
|
||||||
cleans += SQL-clean SQL/ODBC-clean SQL/SQLite-clean SQL/MySQL-clean SQL/PostgreSQL-clean
|
cleans += SQL-clean SQL/ODBC-clean SQL/SQLite-clean SQL/MySQL-clean SQL/PostgreSQL-clean
|
||||||
cleans += MongoDB-clean Redis-clean Zip-clean PageCompiler-clean PageCompiler/File2Page-clean CppParser-clean
|
cleans += MongoDB-clean Redis-clean Zip-clean PageCompiler-clean PageCompiler/File2Page-clean CppParser-clean
|
||||||
|
|
||||||
@@ -148,6 +148,20 @@ Foundation-clean:
|
|||||||
$(MAKE) -C $(POCO_BASE)/Foundation/testsuite clean
|
$(MAKE) -C $(POCO_BASE)/Foundation/testsuite clean
|
||||||
$(MAKE) -C $(POCO_BASE)/Foundation/samples clean
|
$(MAKE) -C $(POCO_BASE)/Foundation/samples clean
|
||||||
|
|
||||||
|
Encodings-libexec: Foundation-libexec
|
||||||
|
$(MAKE) -C $(POCO_BASE)/Encodings
|
||||||
|
|
||||||
|
Encodings-tests: Encodings-libexec cppunit
|
||||||
|
$(MAKE) -C $(POCO_BASE)/Encodings/testsuite
|
||||||
|
|
||||||
|
Encodings-samples: Encodings-libexec
|
||||||
|
$(MAKE) -C $(POCO_BASE)/Encodings/samples
|
||||||
|
|
||||||
|
Encodings-clean:
|
||||||
|
$(MAKE) -C $(POCO_BASE)/Encodings clean
|
||||||
|
$(MAKE) -C $(POCO_BASE)/Encodings/testsuite clean
|
||||||
|
$(MAKE) -C $(POCO_BASE)/Encodings/samples clean
|
||||||
|
|
||||||
XML-libexec: Foundation-libexec
|
XML-libexec: Foundation-libexec
|
||||||
$(MAKE) -C $(POCO_BASE)/XML
|
$(MAKE) -C $(POCO_BASE)/XML
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user