mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-09 11:17:31 +01:00
26 lines
325 B
Makefile
26 lines
325 B
Makefile
|
#
|
||
|
# Makefile
|
||
|
#
|
||
|
# Makefile for Poco Trace sample
|
||
|
#
|
||
|
|
||
|
|
||
|
ifdef POCO_ENABLE_TRACE
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/global
|
||
|
|
||
|
objects = trace
|
||
|
|
||
|
target = trace
|
||
|
target_version = 1
|
||
|
target_libs = PocoTrace PocoFoundation
|
||
|
target_includes = $(POCO_BASE)/Trace/include
|
||
|
|
||
|
include $(POCO_BASE)/build/rules/exec
|
||
|
|
||
|
else
|
||
|
|
||
|
all:
|
||
|
|
||
|
endif
|