OSDN Git Service

Improve comment about __DARWIN_64_BIT_INO_T.
[android-x86/external-exfat.git] / SConstruct
1 #
2 #       SConstruct (10.09.09)
3 #       SConscript for all components.
4 #
5 #       Copyright (C) 2009, 2010  Andrew Nayenko
6 #
7 #       This program is free software: you can redistribute it and/or modify
8 #       it under the terms of the GNU General Public License as published by
9 #       the Free Software Foundation, either version 3 of the License, or
10 #       (at your option) any later version.
11 #
12 #       This program is distributed in the hope that it will be useful,
13 #       but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #       GNU General Public License for more details.
16 #
17 #       You should have received a copy of the GNU General Public License
18 #       along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 import os
22 import platform
23 import SCons
24
25 env = Environment(**ARGUMENTS)
26
27 if not env['CCFLAGS']:
28         if env['CC'] == 'gcc':
29                 env['CCFLAGS'] = '-Wall -O2 -ggdb'
30 env.Append(CPPDEFINES = {'FUSE_USE_VERSION': 26})
31 env.Append(CPPDEFINES = {'_FILE_OFFSET_BITS' : 64})
32 # __DARWIN_64_BIT_INO_T=0 define is needed because since Snow Leopard inode
33 # numbers are 64-bit by default, but libfuse operates 32-bit ones. This define
34 # forces 32-bit inode declaration in system headers, but it's also possible to
35 # link against libfuse_ino64 instead.
36 if platform.system() == 'Darwin':
37         env.Append(CPPDEFINES = {'__DARWIN_64_BIT_INO_T' : 0})
38 env.Append(CPPPATH = ['libexfat'])
39 env.Append(LINKFLAGS = '')
40
41 env.Library('libexfat/exfat', Glob('libexfat/*.c'))
42 fsck = env.Program('fsck/exfatck', Glob('fsck/*.c'), LIBS = ['exfat'], LIBPATH = 'libexfat')
43 mount = env.Program('fuse/mount.exfat-fuse', Glob('fuse/*.c'), LIBS = ['exfat', 'fuse'], LIBPATH = 'libexfat')
44
45 def get_destdir():
46         try:
47                 destdir = os.environ['DESTDIR']
48         except KeyError:
49                 destdir = '/sbin'
50         return destdir
51
52 def make_symlink((dir)):
53         workdir = os.getcwd()
54         os.chdir(dir)
55         try:
56                 os.remove('mount.exfat')
57         except OSError:
58                 pass
59         os.symlink('mount.exfat-fuse', 'mount.exfat')
60         os.chdir(workdir)
61
62 symlink = SCons.Action.ActionFactory(make_symlink,
63                 lambda dir: 'make_symlink("%s")' % dir)
64 Alias('install',
65                 Install(dir = get_destdir(), source = mount),
66                 symlink(dir = get_destdir()))
67
68 Default([mount, fsck])