mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-16 15:39:18 +01:00
22 lines
463 B
Makefile
22 lines
463 B
Makefile
|
#
|
||
|
# Makefile
|
||
|
#
|
||
|
# $Id: //poco/1.3/CppParser/Makefile#1 $
|
||
|
#
|
||
|
# Makefile for Poco CppParser
|
||
|
#
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/global
|
||
|
|
||
|
SHAREDOPT_CXX += -DCppParser_EXPORTS
|
||
|
|
||
|
objects = CppToken Decl Enum EnumValue Function NameSpace Parameter \
|
||
|
Parser Struct Symbol Tokenizer TypeDef Utility Variable \
|
||
|
Attributes AttributesParser
|
||
|
|
||
|
target = PocoCppParser
|
||
|
target_version = $(LIBVERSION)
|
||
|
target_libs = PocoFoundation
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/lib
|