mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
22 lines
398 B
Makefile
22 lines
398 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco C++ Server Page Compiler
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
objects = Page PageReader \
|
|
CodeWriter ApacheCodeWriter OSPCodeWriter \
|
|
PageCompiler
|
|
|
|
ifdef POCO_UNBUNDLED
|
|
SYSLIBS += -lz -lpcre -lexpat
|
|
endif
|
|
|
|
target = cpspc
|
|
target_version = 1
|
|
target_libs = PocoNet PocoUtil PocoXML PocoJSON PocoFoundation
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|