7 lines
208 B
Makefile
7 lines
208 B
Makefile
|
GOBUILD ?= go build
|
||
|
|
||
|
all: main.go logging.go keyExchange.go keyCrypto.go files.go fileCrypto.go deviceDiscovery.go config.go
|
||
|
$(GOBUILD)
|
||
|
|
||
|
install: opensend
|
||
|
install -Dm755 opensend $(DESTDIR)/usr/bin/opensend
|