aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index aedd26d..f8810fd 100644
--- a/Makefile
+++ b/Makefile
@@ -17,10 +17,10 @@ inode.o: inode.c
dir.o: dir.c
$(CC) $(KCFLAGS) $(KCPPFLAGS) -c dir.c
-main.o: main.c
- $(CC) $(KCFLAGS) $(KCPPFLAGS) -c main.c
+util.o: util.c
+ $(CC) $(KCFLAGS) $(KCPPFLAGS) -c util.c
-fuse_objs = dev.o inode.o dir.o main.o
+fuse_objs = dev.o inode.o dir.o util.o
fuse.o: $(fuse_objs)
ld -r -o fuse.o $(fuse_objs)