cc-metric-collector/sinks/Makefile

13 lines
269 B
Makefile
Raw Normal View History

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