From 908e9c8f40079a46bcdd4b710fcc03669c068caa Mon Sep 17 00:00:00 2001 From: !flatcap Date: Thu, 22 Aug 2002 18:09:47 +0000 Subject: [PATCH] "configure --enable-really-static" and "make strip" very little has changed, but configure has lots of line numbers that have shift slightly 2002/07/11 16:45:07-00:00 !antona fix make dist 2002/06/05 20:32:52-00:00 !antona Mft mirror now updated from ntfs_write_mft_record, yey! Fixup ntfstools accordingly. 2002/06/02 23:18:56-00:00 !antona Updates to spec file and make files. 2002/06/01 00:41:45-00:00 !antona huge update! 2002/05/08 05:49:35-00:00 !mattjf Started work on ntfsinfo 2002/04/15 20:04:22-00:00 !antona Fix all compiler warnings that came up with -Wall. Enabled -Wall for ./configure --enable-debug everywhere. Fix a few bugs in mkntfs that came up in the warnings (just error code paths, nothing major). 2002/04/14 14:15:47-00:00 !antona Cleanups and updates. 2001/06/11 19:11:37-00:00 !antona Fix rpm generation. Circumvent configure bug by cheating in configure.in moving around nonopt to host and setting nonopt to NONE. 2001/06/01 02:07:23-00:00 !antona It has been a long time since last commit. At moment have done a lot of work on mkntfs but also at the moment ntfsfix and ntfsdump_logfile and libntfs are broken. Basically only mkntfs works and that is not complete either. 2001/02/03 02:03:35-00:00 !antona More files. 2001/02/02 01:28:46-00:00 !antona make dist fixes using more Makefiles. 2001/02/02 00:16:18-00:00 !antona Changed make process to using autoconf/automake/libtool. Added necessary files for this and for the gnu standard. Inititial checkin. Probably still stuff missing. Will know soon... (Logical change 1.5) --- Makefile.am | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/Makefile.am b/Makefile.am index e69de29b..e2f2117c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -0,0 +1,25 @@ + +# 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 ntfstools + +EXTRA_DIST = AUTHORS CREDITS COPYING TODO.include TODO.libntfs ChangeLog \ + INSTALL NEWS README autogen.sh linux-ntfs.spec.in \ + TODO.ntfstools + +AUTOMAKE_OPTIONS = gnu + +dist-hook: linux-ntfs.spec + cp linux-ntfs.spec $(distdir) + +libtool: $(LIBTOOL_DEPS) + $(SHELL) ./config.status --recheck + +strip: + $(MAKE) -C ntfstools strip +