Merge pull request #44 from harshavardhana/pr_out_restructure_directory_add_pkgs_folder_now

Restructure directory, add 'pkgs' folder now
This commit is contained in:
Harshavardhana
2014-11-24 15:11:48 -08:00
128 changed files with 50 additions and 7 deletions
View File
+4 -2
View File
@@ -3,10 +3,12 @@
all: test install
build-erasure:
cd erasure && make
cd pkgs/erasure && make
build-signify:
cd pkgs/signify && make
test: build-erasure
test: build-erasure build-signify
godep go test -race -coverprofile=cover.out github.com/minio-io/minio
install: build-erasure
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"strconv"
"github.com/codegangsta/cli"
"github.com/minio-io/minio/erasure"
"github.com/minio-io/minio/pkgs/erasure"
)
func main() {
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"strconv"
"github.com/codegangsta/cli"
"github.com/minio-io/minio/erasure"
"github.com/minio-io/minio/pkgs/erasure"
)
func main() {
+1 -1
View File
@@ -1 +1 @@
erasure/isal
pkgs/erasure/isal
+2 -2
View File
@@ -19,8 +19,8 @@
package erasure
// #cgo CPPFLAGS: -Iisal/include
// #cgo LDFLAGS: isal/isa-l.a
// #cgo CPPFLAGS: -I./isal/include
// #cgo LDFLAGS: ./isal/isa-l.a
// #include <stdlib.h>
// #include <erasure-code.h>
// #include <stdlib.h>
+8
View File
@@ -0,0 +1,8 @@
all: build
.PHONY: all
libsignify/libsignify_static.a:
@$(MAKE) -C libsignify libsignify_static.a
build: libsignify/libsignify_static.a
@godep go build

Some files were not shown because too many files have changed in this diff Show More