OSDN Git Service

Renamed sbdump to dumpexfat.
authorresver <resver@60bc1c72-a15a-11de-b98f-4500b42dc123>
Sat, 22 Jan 2011 10:35:33 +0000 (10:35 +0000)
committerresver <resver@60bc1c72-a15a-11de-b98f-4500b42dc123>
Sat, 22 Jan 2011 10:35:33 +0000 (10:35 +0000)
git-svn-id: http://exfat.googlecode.com/svn/trunk@195 60bc1c72-a15a-11de-b98f-4500b42dc123

SConstruct
dump/main.c [moved from sbdump/main.c with 94% similarity]

index 2070236..cd9f119 100644 (file)
@@ -41,7 +41,7 @@ env.Append(LINKFLAGS = '')
 
 env.Library('libexfat/exfat', Glob('libexfat/*.c'))
 mount = env.Program('fuse/mount.exfat-fuse', Glob('fuse/*.c'), LIBS = ['exfat', 'fuse'], LIBPATH = 'libexfat')
-sbdump = env.Program('sbdump/sbdump', Glob('sbdump/*.c'), LIBS = ['exfat'], LIBPATH = 'libexfat')
+dump = env.Program('dump/dumpexfat', Glob('dump/*.c'), LIBS = ['exfat'], LIBPATH = 'libexfat')
 fsck = env.Program('fsck/exfatfsck', Glob('fsck/*.c'), LIBS = ['exfat'], LIBPATH = 'libexfat')
 mkfs = env.Program('mkfs/mkexfatfs', Glob('mkfs/*.c'), LIBS = ['exfat'], LIBPATH = 'libexfat')
 label = env.Program('label/exfatlabel', Glob('label/*.c'), LIBS = ['exfat'], LIBPATH = 'libexfat')
@@ -69,4 +69,4 @@ Alias('install',
                Install(dir = get_destdir(), source = mount),
                symlink(dir = get_destdir()))
 
-Default([mount, sbdump, fsck, mkfs, label])
+Default([mount, dump, fsck, mkfs, label])
similarity index 94%
rename from sbdump/main.c
rename to dump/main.c
index d795ab1..249b31f 100644 (file)
@@ -1,9 +1,8 @@
 /*
        main.c (08.11.10)
-       A small utility that prints exFAT super block contents in human-readable
-       format. Useless for end users.
+       Prints detailed information about exFAT volume.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010  Andrew Nayenko
 
        This program is free software: you can redistribute it and/or modify
        it under the terms of the GNU General Public License as published by