mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 18:14:24 +08:00
c282c53742
(Logical change 1.23)
26 lines
554 B
Makefile
26 lines
554 B
Makefile
|
|
# Need this to enable 64-bit (device) file access functions and parameters.
|
|
if DEBUG
|
|
AM_CFLAGS = -D_FILE_OFFSET_BITS=64 -g -DDEBUG -Wall
|
|
else
|
|
AM_CFLAGS = -D_FILE_OFFSET_BITS=64
|
|
endif
|
|
|
|
SUBDIRS = doc include libntfs ntfsprogs
|
|
|
|
EXTRA_DIST = AUTHORS CREDITS COPYING TODO.include TODO.libntfs ChangeLog \
|
|
INSTALL NEWS README autogen.sh linux-ntfs.spec.in \
|
|
TODO.ntfsprogs
|
|
|
|
AUTOMAKE_OPTIONS = gnu
|
|
|
|
dist-hook: linux-ntfs.spec
|
|
cp linux-ntfs.spec $(distdir)
|
|
|
|
libtool: $(LIBTOOL_DEPS)
|
|
$(SHELL) ./config.status --recheck
|
|
|
|
strip:
|
|
$(MAKE) -C ntfsprogs strip
|
|
|