Reorganize

This commit is contained in:
Zachary Yedidia
2016-03-21 12:51:45 -04:00
parent 8257e94ab1
commit 076d41e0ab
12 changed files with 18 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
build: syn-files
make build -C src
mv src/micro .
install: syn-files
make install -C src
syn-files:
mkdir -p ~/.micro/syntax
cp syntax_files/* ~/.micro/syntax

8
src/Makefile Normal file
View File

@@ -0,0 +1,8 @@
build:
go get ./...
go build -o micro
install:
go get ./...
go build -o micro
mv micro $(GOBIN)