diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2001-10-24 14:37:13 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2001-10-24 14:37:13 +0000 |
commit | 79b52f63303c15d4545a7464775f4b1beab8d2c9 (patch) | |
tree | 7f3c12670af489f58740408ad755e775e27803ef /Makefile | |
parent | d8318555890588b0982749fdd23826d9ddb02098 (diff) | |
download | libfuse-79b52f63303c15d4545a7464775f4b1beab8d2c9.tar.gz |
improvements
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |