
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14164 ec53bebd-3082-4978-b11e-865c3cabbd6b
48 lines
704 B
Makefile
48 lines
704 B
Makefile
# $Id$
|
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
AM_CPPFLAGS += $(INCLUDE_krb4)
|
|
|
|
DEFS = @DEFS@
|
|
|
|
foodir = $(libdir)
|
|
foo_DATA = afskauthlib.so
|
|
|
|
SUFFIXES += .c .o
|
|
|
|
SRCS = verify.c
|
|
OBJS = verify.o
|
|
|
|
CLEANFILES = $(foo_DATA) $(OBJS) so_locations
|
|
|
|
afskauthlib.so: $(OBJS)
|
|
$(LINK) -shared $(OBJS) $(L)
|
|
|
|
.c.o:
|
|
$(COMPILE) -c $<
|
|
|
|
KAFS = $(top_builddir)/lib/kafs/libkafs.la
|
|
|
|
if KRB5
|
|
L = \
|
|
$(KAFS) \
|
|
$(top_builddir)/lib/krb5/libkrb5.la \
|
|
$(top_builddir)/lib/asn1/libasn1.la \
|
|
$(LIB_krb4) \
|
|
$(LIB_des) \
|
|
$(top_builddir)/lib/roken/libroken.la \
|
|
-lc
|
|
|
|
else
|
|
|
|
L = \
|
|
$(KAFS) \
|
|
$(LIB_krb4) \
|
|
$(LIB_des) \
|
|
$(top_builddir)/lib/roken/libroken.la \
|
|
-lc
|
|
endif
|
|
|
|
$(OBJS): $(top_builddir)/include/config.h
|