aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2001-10-24 14:37:13 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2001-10-24 14:37:13 +0000
commit79b52f63303c15d4545a7464775f4b1beab8d2c9 (patch)
tree7f3c12670af489f58740408ad755e775e27803ef /Makefile
parentd8318555890588b0982749fdd23826d9ddb02098 (diff)
downloadlibfuse-79b52f63303c15d4545a7464775f4b1beab8d2c9.tar.gz
improvements
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)