summaryrefslogtreecommitdiffstats
path: root/crypto/heimdal/lib/auth/pam/Makefile.am
blob: c4d0eb545b7eda02db1a301d6471c24d908b062a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# $Id: Makefile.am 22299 2007-12-14 06:39:19Z lha $

include $(top_srcdir)/Makefile.am.common

AM_CPPFLAGS += $(INCLUDE_krb4)

WFLAGS += $(WFLAGS_NOIMPLICITINT)

DEFS = @DEFS@

## this is horribly ugly, but automake/libtool doesn't allow us to
## unconditionally build shared libraries, and it does not allow us to
## link with non-installed libraries

if KRB4
KAFS=$(top_builddir)/lib/kafs/.libs/libkafs.a
KAFS_S=$(top_builddir)/lib/kafs/.libs/libkafs.so

L = \
	$(KAFS)						\
	$(top_builddir)/lib/krb/.libs/libkrb.a		\
	$(LIB_hcrypto_a)		\
	$(top_builddir)/lib/roken/.libs/libroken.a	\
	-lc

L_shared = \
	$(KAFS_S)					\
	$(top_builddir)/lib/krb/.libs/libkrb.so		\
	$(LIB_hcrypto_so)		\
	$(top_builddir)/lib/roken/.libs/libroken.so	\
	$(LIB_getpwnam_r)				\
	-lc

MOD = pam_krb4.so

endif

foodir = $(libdir)
foo_DATA = $(MOD)

LDFLAGS = @LDFLAGS@

SRCS = pam.c
OBJS = pam.o

pam_krb4.so: $(OBJS)
	@if test -f $(top_builddir)/lib/krb/.libs/libkrb.a; then \
		echo "$(LIBTOOL) --mode=link --tag=CC $(CC) -shared -o $@ $(LDFLAGS) $(OBJS) $(L)"; \
		$(LIBTOOL) --mode=link --tag=CC $(CC) -shared -o $@ $(LDFLAGS) $(OBJS) $(L); \
	elif test -f $(top_builddir)/lib/krb/.libs/libkrb.so; then \
		echo "$(LIBTOOL) --mode=link --tag=CC $(CC) -shared -o $@ $(LDFLAGS) $(OBJS) $(L_shared)"; \
		$(LIBTOOL) --mode=link --tag=CC $(CC) -shared -o $@ $(LDFLAGS) $(OBJS) $(L_shared); \
	else \
		echo "missing libraries"; exit 1; \
	fi

CLEANFILES = $(MOD) $(OBJS)

SUFFIXES += .c .o

# XXX inline COMPILE since automake wont add it

.c.o:
	$(LIBTOOL) --mode=compile --tag=CC $(CC) \
	$(DEFS) $(DEFAULT_AM_CPPFLAGS) $(INCLUDES) $(AM_CPPFLAGS) \
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) \
	-c `test -f '$<' || echo '$(srcdir)/'`$<

EXTRA_DIST = pam.conf.add $(SRCS)
OpenPOWER on IntegriCloud