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