mirror of
https://github.com/Hopiu/micro.git
synced 2026-04-04 15:10:27 +00:00
Fix makefiles
This commit is contained in:
parent
a5b0befba1
commit
7184b92488
2 changed files with 4 additions and 12 deletions
8
Makefile
8
Makefile
|
|
@ -1,9 +1,9 @@
|
|||
build: syn-files
|
||||
make build -C src
|
||||
mv src/micro .
|
||||
go get -d ./src
|
||||
go build -o micro ./src
|
||||
|
||||
install: syn-files
|
||||
make install -C src
|
||||
install: syn-files build
|
||||
mv micro $(GOBIN)
|
||||
|
||||
syn-files:
|
||||
mkdir -p ~/.micro/syntax
|
||||
|
|
|
|||
|
|
@ -1,8 +0,0 @@
|
|||
build:
|
||||
go get ./...
|
||||
go build -o micro
|
||||
|
||||
install:
|
||||
go get ./...
|
||||
go build -o micro
|
||||
mv micro $(GOBIN)
|
||||
Loading…
Reference in a new issue