Makefile.am 902 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # $Id: Makefile.am,v 1.7 2010/02/04 10:27:09 aland Exp $
  3. #
  4. # Copyright (C) 1995,1997,1998 Lars Fenneberg
  5. #
  6. # See the file COPYRIGHT for the respective terms and conditions.
  7. # If the file is missing contact me at lf@elemental.net
  8. # and I'll send you a copy.
  9. #
  10. AUTOMAKE_OPTIONS = foreign
  11. RC_LOG_FACILITY = @RC_LOG_FACILITY@
  12. LIBVERSION = @LIBVERSION@
  13. AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir)/include -I$(top_builddir) $(CRYPTO_CFLAGS)
  14. DEFS = @DEFS@ -DRC_LOG_FACILITY=$(RC_LOG_FACILITY)
  15. CLEANFILES = *~
  16. lib_LTLIBRARIES = libfreeradius-client.la
  17. libfreeradius_client_la_SOURCES = buildreq.c clientid.c env.c sendserver.c \
  18. avpair.c config.c dict.c ip_util.c log.c util.c \
  19. options.h rc-md5.h rc-md5.c util.h
  20. if !ENABLE_NETTLE
  21. libfreeradius_client_la_SOURCES += md5.c md5.h
  22. endif
  23. libfreeradius_client_la_LDFLAGS = -version-info $(LIBVERSION)
  24. libfreeradius_client_la_LIBADD = $(CRYPTO_LIBS)