mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
29 lines
444 B
Makefile
29 lines
444 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco Prometheus
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
objects = \
|
|
Collector \
|
|
Counter \
|
|
IntCounter \
|
|
Gauge \
|
|
IntGauge \
|
|
LabeledMetric \
|
|
Histogram \
|
|
Registry \
|
|
TextExporter \
|
|
MetricsRequestHandler \
|
|
MetricsServer \
|
|
ProcessCollector \
|
|
ThreadPoolCollector
|
|
|
|
target = PocoPrometheus
|
|
target_version = $(LIBVERSION)
|
|
target_libs = PocoFoundation PocoNet
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|