2012-04-23 05:14:34 +04:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# $Id: //poco/1.4/PageCompiler/Makefile#1 $
|
|
|
|
#
|
|
|
|
# Makefile for Poco C++ Server Page Compiler
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
|
|
|
objects = Page PageReader \
|
|
|
|
CodeWriter ApacheCodeWriter OSPCodeWriter \
|
|
|
|
PageCompiler
|
|
|
|
|
2012-12-27 09:23:15 +04:00
|
|
|
ifdef POCO_UNBUNDLED
|
|
|
|
SYSLIBS += -lz -lpcre -lexpat
|
|
|
|
endif
|
|
|
|
|
2012-04-23 05:14:34 +04:00
|
|
|
target = cpspc
|
|
|
|
target_version = 1
|
2013-01-05 10:04:09 +04:00
|
|
|
target_libs = PocoNet PocoUtil PocoXML PocoJSON PocoFoundation
|
2012-04-23 05:14:34 +04:00
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|