Adding testing CLI client (based off the Heimdal testing sample)
[mod_auth_kerb.git] / client / Makefile
diff --git a/client/Makefile b/client/Makefile
new file mode 100644 (file)
index 0000000..0fe6f2a
--- /dev/null
@@ -0,0 +1,11 @@
+DEFS = -DHAVE_SYS_TYPES_H -DHAVE_UNISTD_H -DHAVE_SYS_SOCKET_H -DHAVE_NETINET_IN_H -DHAVE_NETDB_H -DHAVE_SYS_PARAM_H \
+       -D_GNU_SOURCE
+CPPFLAGS = $(DEFS) -Wall -O0 -g
+LDFLAGS = -lgssapi_krb5
+
+HTTP_OBJS = http_client.o gss_common.o base64.o net_write.o net_read.o
+
+http_client: $(HTTP_OBJS)
+
+clean:
+       rm -f $(HTTP_OBJS) http_client