Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Levin Zimmermann
go-fuse
Commits
1b112417
Commit
1b112417
authored
Feb 08, 2012
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use Go tool throughout.
parent
dfd827ce
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
9 additions
and
151 deletions
+9
-151
all.bash
all.bash
+8
-6
example/autounionfs/Makefile
example/autounionfs/Makefile
+0
-9
example/bulkstat/Makefile
example/bulkstat/Makefile
+0
-9
example/hello/Makefile
example/hello/Makefile
+0
-8
example/loopback/Makefile
example/loopback/Makefile
+0
-9
example/memfs/Makefile
example/memfs/Makefile
+0
-10
example/multizip/Makefile
example/multizip/Makefile
+0
-9
example/unionfs/Makefile
example/unionfs/Makefile
+0
-9
example/zipfs/Makefile
example/zipfs/Makefile
+0
-10
fuse/Makefile
fuse/Makefile
+0
-44
genversion.sh
genversion.sh
+1
-1
unionfs/Makefile
unionfs/Makefile
+0
-14
zipfs/Makefile
zipfs/Makefile
+0
-13
No files found.
all.bash
View file @
1b112417
#!/bin/sh
set
-eux
rm
-f
fuse/version.gen.go
sh genversion.sh
fuse/version.gen.go
for
target
in
"clean"
""
"
$@
"
;
do
for
target
in
"clean"
"install"
;
do
for
d
in
fuse benchmark zipfs unionfs
\
example/hello example/loopback example/zipfs
\
example/bulkstat example/multizip example/unionfs
\
example/autounionfs
;
\
do
go
make
-C
$d
$target
go
${
target
}
go-fuse/
${
d
}
done
done
for
d
in
fuse zipfs unionfs
do
(
cd
$d
&&
go
test
)
(
cd
$d
&&
go
test
go-fuse/
$d
)
done
# TODO - reinstate the benchmark
exit
1
gomake
-C
benchmark cstatfs
for
d
in
benchmark
do
...
...
example/autounionfs/Makefile
deleted
100644 → 0
View file @
dfd827ce
# Use "gomake install" to build and install this package.
include
$(GOROOT)/src/Make.inc
TARG
=
autounionfs
GOFILES
=
main.go
DEPS
=
../../fuse ../../unionfs
include
$(GOROOT)/src/Make.cmd
example/bulkstat/Makefile
deleted
100644 → 0
View file @
dfd827ce
# Use "gomake install" to build and install this package.
include
$(GOROOT)/src/Make.inc
TARG
=
bulkstat
GOFILES
=
bulkstat.go
DEPS
=
../../benchmark
include
$(GOROOT)/src/Make.cmd
example/hello/Makefile
deleted
100644 → 0
View file @
dfd827ce
include
$(GOROOT)/src/Make.inc
TARG
=
hello
GOFILES
=
main.go
DEPS
=
../../fuse
include
$(GOROOT)/src/Make.cmd
example/loopback/Makefile
deleted
100644 → 0
View file @
dfd827ce
# Use "gomake install" to build and install this package.
include
$(GOROOT)/src/Make.inc
TARG
=
loopback
GOFILES
=
main.go
DEPS
=
../../fuse
include
$(GOROOT)/src/Make.cmd
example/memfs/Makefile
deleted
100644 → 0
View file @
dfd827ce
# Use "gomake install" to build and install this package.
include
$(GOROOT)/src/Make.inc
TARG
=
memfs
GOFILES
=
main.go
DEPS
=
../../fuse
include
$(GOROOT)/src/Make.cmd
example/multizip/Makefile
deleted
100644 → 0
View file @
dfd827ce
# Use "gomake install" to build and install this package.
include
$(GOROOT)/src/Make.inc
TARG
=
multizip
GOFILES
=
main.go
DEPS
=
../../fuse ../../zipfs
include
$(GOROOT)/src/Make.cmd
example/unionfs/Makefile
deleted
100644 → 0
View file @
dfd827ce
# Use "gomake install" to build and install this package.
include
$(GOROOT)/src/Make.inc
TARG
=
unionfs
GOFILES
=
main.go
DEPS
=
../../fuse ../../unionfs
include
$(GOROOT)/src/Make.cmd
example/zipfs/Makefile
deleted
100644 → 0
View file @
dfd827ce
# Use "gomake install" to build and install this package.
include
$(GOROOT)/src/Make.inc
TARG
=
zipfs
GOFILES
=
main.go
DEPS
=
../../fuse ../../zipfs
include
$(GOROOT)/src/Make.cmd
fuse/Makefile
deleted
100644 → 0
View file @
dfd827ce
# Use "gomake install" to build and install this package.
include
$(GOROOT)/src/Make.inc
TARG
=
github.com/hanwen/go-fuse/fuse
MANUAL_GOFILES
=
api.go
\
attr.go
\
bufferpool.go
\
copy.go
\
default.go
\
defaultfile.go
\
defaultnode.go
\
defaultraw.go
\
direntry.go
\
files.go
\
fsmount.go
\
fsconnector.go
\
fuse.go
\
handle.go
\
inode.go
\
latencymap.go
\
lockingfs.go
\
loopback.go
\
misc.go
\
memnode.go
\
mount.go
\
mountstate.go
\
opcode.go
\
prefixfs.go
\
pathfs.go
\
fsops.go
\
readonlyfs.go
\
request.go
\
syscall.go
\
typeprint.go
\
types.go
\
version.go
\
GOFILES
=
$(MANUAL_GOFILES)
version.gen.go
include
$(GOROOT)/src/Make.pkg
version.gen.go
:
$(MANUAL_GOFILES)
sh genversion.sh
>
$@
fuse/
genversion.sh
→
genversion.sh
View file @
1b112417
...
...
@@ -2,7 +2,7 @@
VERSION
=
\"
$(
git log
-n1
--pretty
=
format:
'%h (%cd)'
--date
=
iso
)
\"
cat
<<
EOF
cat
<<
EOF
>
$1
package fuse
func init() {
version = new(string)
...
...
unionfs/Makefile
deleted
100644 → 0
View file @
dfd827ce
include
$(GOROOT)/src/Make.inc
TARG
=
github.com/hanwen/go-fuse/unionfs
GOFILES
=
unionfs.go
\
dircache.go
\
timedcache.go
\
cachingfs.go
\
autounion.go
\
create.go
DEPS
=
../fuse
include
$(GOROOT)/src/Make.pkg
zipfs/Makefile
deleted
100644 → 0
View file @
dfd827ce
# Use "gomake install" to build and install this package.
include
$(GOROOT)/src/Make.inc
TARG
=
github.com/hanwen/go-fuse/zipfs
DEPS
=
../fuse
GOFILES
=
zipfs.go
\
multizip.go
\
tarfs.go
\
memtree.go
include
$(GOROOT)/src/Make.pkg
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment