m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-08 11:23:47 -05:00

Restructuring: main package in project root

This commit is contained in:
Junegunn Choi
2017-06-02 16:32:15 +09:00
parent 159f30b37f
commit 8bbf9335e1
7 changed files with 144 additions and 243 deletions

View File

@@ -10,20 +10,19 @@ Build instructions
### Using Makefile
```sh
# Source files are located in src directory
cd src
Makefile will set up and use its own `$GOPATH` under the project root.
# Build fzf binary for your platform in src/fzf
```sh
# Build fzf binary for your platform in target
make
# Build fzf binary and copy it to bin directory
make install
# Build 32-bit and 64-bit executables and tarballs
# Build 32-bit and 64-bit executables and tarballs in target
make release
# Make release archives for all supported platforms
# Make release archives for all supported platforms in target
make release-all
```
@@ -33,7 +32,7 @@ Alternatively, you can build fzf directly with `go get` command without
manually cloning the repository.
```sh
go get -u github.com/junegunn/fzf/src/fzf
go get -u github.com/junegunn/fzf
```
Third-party libraries used