[Ocfs-tools-commits] jlbec commits r65 - in branches/joel-junk/ocfs2: . fsck.ocfs2

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Tue Jun 15 20:37:53 CDT 2004


Author: jlbec
Date: 2004-06-15 19:37:50 -0500 (Tue, 15 Jun 2004)
New Revision: 65

Added:
   branches/joel-junk/ocfs2/fsck.ocfs2/
   branches/joel-junk/ocfs2/fsck.ocfs2/Makefile
   branches/joel-junk/ocfs2/libocfs2/
Modified:
   branches/joel-junk/ocfs2/Makefile
Log:
o Added



Modified: branches/joel-junk/ocfs2/Makefile
===================================================================
--- branches/joel-junk/ocfs2/Makefile	2004-06-16 00:32:44 UTC (rev 64)
+++ branches/joel-junk/ocfs2/Makefile	2004-06-16 00:37:50 UTC (rev 65)
@@ -2,6 +2,6 @@
 
 include $(TOPDIR)/Preamble.make
 
-SUBDIRS = libocfs debugocfs format fsck bugfix
+SUBDIRS = libocfs2 fsck.ocfs2
 
 include $(TOPDIR)/Postamble.make

Copied: branches/joel-junk/ocfs2/fsck.ocfs2/Makefile (from rev 64, branches/joel-junk/ocfs2/format/Makefile)
===================================================================
--- branches/joel-junk/ocfs2/format/Makefile	2004-06-16 00:32:44 UTC (rev 64)
+++ branches/joel-junk/ocfs2/fsck.ocfs2/Makefile	2004-06-16 00:37:50 UTC (rev 65)
@@ -0,0 +1,51 @@
+TOPDIR = ../..
+
+include $(TOPDIR)/Preamble.make
+
+WARNINGS = -Wall -Wstrict-prototypes -Wno-format -Wmissing-prototypes \
+           -Wmissing-declarations
+
+ifdef OCFS_DEBUG
+OPTS = -g
+endif
+
+CFLAGS = $(OPTS) -fno-strict-aliasing $(WARNINGS) 
+
+SBIN_PROGRAMS = fsck.ocfs2
+
+INCLUDES = -Iinc
+DEFINES = -DLINUX 
+
+OPTIMIZE = -O2
+
+ifeq ($(OCFS_PROCESSOR),x86_64)
+  CFLAGS += -m64
+endif
+ifeq ($(OCFS_PROCESSOR),ia64)
+endif
+ifeq ($(OCFS_PROCESSOR),i686)
+  DEFINES += -D__ILP32__
+endif
+
+CFLAGS += $(OPTIMIZE)
+
+VERSION_FILES = fsck.c 
+VERSION_SRC = fsck.c
+VERSION_PREFIX = OCFS2
+
+#MANS = fsck.ocfs2.8
+
+INSTALL_RULES = #install-man-links
+
+#install-man-links: install-mans
+#	cd $(DESTDIR)$(mandir)/man8 \
+#	&& rm -f mkfs.ocfs.8 resizeocfs.8 \
+#	&& $(LN_S) mkfs.ocfs.8 mkfs.ocfs2.8 \
+#	&& $(LN_S) tuneocfs.8 resizeocfs.8
+
+DIST_FILES = $(VERSION_FILES) $(VERSION_SRC) #mkfs.ocfs2.8.in
+
+fsck.ocfs2: fsck.o
+	$(LINK) 
+
+include $(TOPDIR)/Postamble.make



More information about the Ocfs-tools-commits mailing list