Extend make buildsystem with find&symlink helper for libgangliaSink

This commit is contained in:
Thomas Roehl 2022-02-16 03:09:21 +01:00
parent 05bfb91a16
commit 412b708bce
2 changed files with 17 additions and 1 deletions

View File

@ -5,6 +5,15 @@ GOSRC_SINKS := $(wildcard sinks/*.go)
GOSRC_RECEIVERS := $(wildcard receivers/*.go)
GOSRC_INTERNAL := $(wildcard internal/*/*.go)
GOSRC := $(GOSRC_APP) $(GOSRC_COLLECTORS) $(GOSRC_SINKS) $(GOSRC_RECEIVERS) $(GOSRC_INTERNAL)
COMPONENT_DIRS := collectors \
sinks \
receivers \
internal/metricRouter \
internal/ccMetric \
internal/metricAggregator \
internal/ccLogger \
internal/ccTopology \
internal/multiChanTicker
.PHONY: all
@ -12,12 +21,13 @@ all: $(APP)
$(APP): $(GOSRC)
make -C collectors
make -C sinks
go get
go build -o $(APP) $(GOSRC_APP)
.PHONY: clean
clean:
make -C collectors clean
@for COMP in $(COMPONENT_DIRS); do if [ -e $$COMP/Makefile ]; then make -C $$COMP clean; fi; done
rm -f $(APP)
.PHONY: fmt

View File

@ -3,3 +3,9 @@ all: libganglia.so
libganglia.so:
@find /usr -name "libganglia.so*" -exec ln -s {} libganglia.so \;
clean:
rm -f libganglia.so
.PHONY: clean