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