Adding testing CLI client (based off the Heimdal testing sample)
[mod_auth_kerb.git] / client / Makefile
1 DEFS = -DHAVE_SYS_TYPES_H -DHAVE_UNISTD_H -DHAVE_SYS_SOCKET_H -DHAVE_NETINET_IN_H -DHAVE_NETDB_H -DHAVE_SYS_PARAM_H \
2         -D_GNU_SOURCE
3 CPPFLAGS = $(DEFS) -Wall -O0 -g
4 LDFLAGS = -lgssapi_krb5
5
6 HTTP_OBJS = http_client.o gss_common.o base64.o net_write.o net_read.o
7
8 http_client: $(HTTP_OBJS)
9
10 clean:
11         rm -f $(HTTP_OBJS) http_client