| 1234567891011121314151617181920 | INSTDIR?=/usr/localBINDIR?=$(INSTDIR)/binGO?=goGOSRC!=find . -name '*.go'password-strength: $(GOSRC)	$(GO) build \		-o $@# Exists in GNUMake but not in NetBSD make and others.RM?=rm -fclean:	$(RM) password-strengthinstall: password-strength	mkdir -p $(BINDIR)	install -m755 $< $(BINDIR)/$<
 |