1## Process this file with automake to produce Makefile.in
2## Use aclocal -I m4; automake
3
4# ========================================================================
5# Copyright 2006-2008 University of Washington
6#
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11#     http://www.apache.org/licenses/LICENSE-2.0
12#
13# ========================================================================
14
15
16WP_UIDMAPPER_SOCKET = "/tmp/wp_uidmapper"
17WEBSERVER_UID = 65534
18
19CFLAGS = '-DWP_UIDMAPPER_SOCKET=$(WP_UIDMAPPER_SOCKET)' \
20         '-DWEBSERVER_UID=$(WEBSERVER_UID)' \
21         '-DAUTH_GSS_PROXY_PATH="$(WEB_BINDIR)/wp_gssapi_proxy"'
22
23bin_PROGRAMS = wp_uidmapper wp_tclsh wp_gssapi_proxy wp_umc
24
25noinst_LIBRARIES = libauthgssproxy.a
26
27libauthgssproxy_a_SOURCES = auth_gss_proxy.c
28
29wp_uidmapper_SOURCES = wp_uidmapper.c id_table.c id_table.h
30
31wp_tclsh_SOURCES = wp_tclsh.c wp_uidmapper_lib.c
32
33wp_gssapi_proxy_SOURCES = wp_gssapi_proxy.c wp_uidmapper_lib.c
34
35wp_umc_SOURCES = wp_umc.c wp_uidmapper_lib.c
36
37AM_CPPFLAGS = -I@top_builddir@/include -I@top_srcdir@/include
38