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