mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-12-25 23:19:06 +01:00
54c693532f
libganglia.so is now loaded during runtime by dlopen and no longer required during link time
13 lines
269 B
Makefile
13 lines
269 B
Makefile
|
|
all: libganglia.so
|
|
|
|
libganglia.so:
|
|
@find /usr ! -readable -prune -o -type d ! -executable -prune -o -name "$@*" -print0 | \
|
|
xargs --null --no-run-if-empty --replace \
|
|
ln --symbolic --verbose --force '{}' "$@"
|
|
|
|
clean:
|
|
rm -f libganglia.so
|
|
|
|
.PHONY: clean
|