Skip to content

Commit a1c7e44

Browse files
authored
First upload
1 parent 6fbe8ba commit a1c7e44

File tree

6 files changed

+1840
-0
lines changed

6 files changed

+1840
-0
lines changed

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
fuse : fuse.o log.o
2+
gcc -g -o fuse fuse.o log.o `pkg-config fuse --libs`
3+
4+
fuse.o : fuse.c log.h params.h
5+
gcc -g -Wall `pkg-config fuse --cflags` -c fuse.c
6+
7+
log.o : log.c log.h params.h
8+
gcc -g -Wall `pkg-config fuse --cflags` -c log.c
9+
10+
clean:
11+
rm -f fuse *.o

0 commit comments

Comments
 (0)