# Build contrib'd binaries from a separate makefile to avoid recursive make
# invocation allocating new canaries and any other unexpected magic.
# -- Andrew Bower <andrew@bower.uk>  Thu, 09 Jan 2025 18:12:00 +0000

.PHONY: all clean

TARGETS=shutdown lib/async-timeout

all: $(TARGETS)

clean:
	$(RM) $(TARGETS)
