Ameba cli & binary (#7)

* Ameba cli & binary

* -1 when ameba found issues

* Add postscript to shard.yml

* Correct postinstall

* Remove targets

* Try executables
This commit is contained in:
V. Elenhaupt 2017-11-01 17:21:41 +02:00 committed by GitHub
parent 0ca990dd5c
commit 6ca4e38167
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 41 additions and 3 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
CRYSTAL_BIN ?= $(shell which crystal)
PREFIX ?= /usr/local
build:
$(CRYSTAL_BIN) build --release --no-debug -o bin/ameba src/cli.cr $(CRFLAGS)
clean:
rm -f ./bin/ameba
install: build
mkdir -p $(PREFIX)/bin
cp ./bin/ameba $(PREFIX)/bin