mirror of
https://github.com/pocoproject/poco.git
synced 2025-08-14 06:08:16 +02:00
26 lines
331 B
Makefile
26 lines
331 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 clean:
|
|
|
|
endif
|