-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Thanks a lot to Niels for helping me to get build stuff right. Change-Id: I634f24d90cd856ceab3cc0c6e9a91003f443403e BUG: 1147462 Signed-off-by: Pranith Kumar K <[email protected]> Reviewed-on: http://review.gluster.org/6529 Reviewed-by: Krutika Dhananjay <[email protected]> Tested-by: Gluster Build System <[email protected]>
- Loading branch information
1 parent
9d82d85
commit 31e7298
Showing
14 changed files
with
870 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
SUBDIRS = src | ||
|
||
CLEANFILES = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
sbin_PROGRAMS = glfsheal | ||
|
||
glfsheal_SOURCES = glfs-heal.c | ||
|
||
glfsheal_LDADD = $(top_builddir)/libglusterfs/src/libglusterfs.la $(GF_LDADD)\ | ||
$(RLLIBS) $(top_builddir)/rpc/xdr/src/libgfxdr.la \ | ||
$(top_builddir)/rpc/rpc-lib/src/libgfrpc.la \ | ||
$(top_builddir)/api/src/libgfapi.la \ | ||
$(top_builddir)/xlators/cluster/afr/src/afr.la \ | ||
$(GF_GLUSTERFS_LIBS) $(XML_LIBS) | ||
|
||
glfsheal_LDFLAGS = $(GF_LDFLAGS) | ||
|
||
AM_CPPFLAGS = $(GF_CPPFLAGS) \ | ||
-I$(top_srcdir)/xlators/lib/src\ | ||
-I$(top_srcdir)/xlators/cluster/afr/src\ | ||
-I$(top_srcdir)/libglusterfs/src -I$(top_srcdir)/rpc/rpc-lib/src\ | ||
-I$(top_srcdir)/rpc/xdr/src\ | ||
-I$(top_srcdir)/api/src\ | ||
-I$(top_srcdir)/contrib/argp-standalone\ | ||
-DDATADIR=\"$(localstatedir)\" \ | ||
-DCONFDIR=\"$(sysconfdir)/glusterfs\" \ | ||
-DGSYNCD_PREFIX=\"$(libexecdir)/glusterfs\"\ | ||
-DSYNCDAEMON_COMPILE=$(SYNCDAEMON_COMPILE) -DSBIN_DIR=\"$(sbindir)\"\ | ||
$(XML_CPPFLAGS) | ||
|
||
AM_CFLAGS = -Wall $(GF_GLUSTERFS_CFLAGS) | ||
|
||
CLEANFILES = | ||
|
||
$(top_builddir)/libglusterfs/src/libglusterfs.la: | ||
$(MAKE) -C $(top_builddir)/libglusterfs/src/ all | ||
|
||
$(top_builddir)/xlators/cluster/afr/src/afr.la: | ||
$(MAKE) -C $(top_builddir)/xlators/cluster/afr/src/ all |
Oops, something went wrong.