
show-undefs:
	$(SHOW)nm -AC $(TARGET) | grep -v '@@' | grep ' U ' | cat

show-bindeps:
ifneq ($(OS),macos)
	$(SHOW)ldd $(TARGET)
else
	$(SHOW)otool -L $(TARGET)
endif

.PHONY: show-undefs show-bindeps
