summaryrefslogtreecommitdiffstats
path: root/tests/basic/gfapi/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic/gfapi/Makefile')
-rw-r--r--tests/basic/gfapi/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/basic/gfapi/Makefile b/tests/basic/gfapi/Makefile
new file mode 100644
index 00000000000..1c5cf03ca3d
--- /dev/null
+++ b/tests/basic/gfapi/Makefile
@@ -0,0 +1,22 @@
+## compiles against the *system* version of libgfapi,
+## but not the libgfapi for the testcases
+
+CFLAGS = -Wall -g $(shell pkg-config --cflags glusterfs-api)
+LDFLAGS = $(shell pkg-config --libs glusterfs-api)
+
+BINARIES = upcall-cache-invalidate libgfapi-fini-hang anonymous_fd seek \
+ bug1283983 bug1291259 gfapi-ssl-test gfapi-load-volfile \
+ mandatory-lock-optimal
+
+%: %.c
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
+
+all: check-pkgconfig $(BINARIES)
+
+clean:
+ -$(RM) $(BINARIES)
+
+.phony: check-pkgconfig
+
+check-pkgconfig:
+ pkg-config --exists glusterfs-api
ns'>+91 * client: NFS-friendly logic changesShehjar Tikoo2009-10-011-22/+93 * Global: NFS-friendly prototype changesShehjar Tikoo2009-10-011-4/+5 * Global: Introduce setattr and fsetattr fopsShehjar Tikoo2009-10-011-431/+150 * protocol/client: Implement rchecksum.Vikas Gorur2009-09-221-0/+71 * protocol/client: access glusterfs context from the ctx member of xlator objectRaghavendra G2009-09-221-1/+1 * client-protocol: fix race-condition encountered while accessing fdctxRaghavendra G2009-09-221-47/+218 * Dumop inodectx addedVijay Bellur2009-09-161-1/+27 * protocol/client: Support for dumpop priv.Vijay Bellur2009-09-161-0/+56 * protocol/client: 'connecting' event is properly notified.Amar Tumballi2009-08-202-4/+23 * protocol/client: fixed registration of saved_fdsAnand Avati2009-08-071-2/+2 * fix build warnings in 'client-protocol'Amar Tumballi2009-07-201-7/+19 * protocol/client: use translated flags in protocol/client open and create fopsAnand Avati2009-07-071-2/+2 * protocol/client - replace ZR_FILENAME_MAX by NAME_MAXBasavanagowda Kanur2009-07-061-1/+1 * cleanup client_forgetAmar Tumballi2009-07-012-179/+2 * build warning fixesAmar Tumballi2009-06-301-2/+2 * client_xattrop: use dict_allocate_and_serialize during serializing xattrRaghavendra G2009-06-301-10/+7 * Fix some trivial typos.Erick Tryzelaar2009-06-291-1/+1 * version check between client/server made more specific to protocol only.Amar Tumballi2009-06-291-5/+5 * client: Replace saved_fds dict with listShehjar Tikoo2009-06-152-158/+177 * Implemented LOG MOP in client-protocol.Vikas Gorur2009-06-111-0/+61 *