Makefile.am 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # Makefile.am for "Sofia-SIP 2 Check", module and unit testing library
  3. #
  4. # Copyright (C) 2009 Nokia Corporation
  5. # Contact: Pekka Pessi <pekka.pessi@nokia.com>
  6. # Licensed under LGPL. See file COPYING.
  7. # ----------------------------------------------------------------------
  8. # Header paths
  9. AM_CPPFLAGS = $(INTERNAL_INCLUDES)
  10. # ----------------------------------------------------------------------
  11. # Build targets
  12. noinst_LIBRARIES = libs2.a
  13. # ----------------------------------------------------------------------
  14. # Rules for building the targets
  15. libs2_a_SOURCES = s2check.h s2tcase.c \
  16. s2base.h s2base.c \
  17. s2sip.c s2sip.h \
  18. s2_localinfo.h s2_localinfo.c \
  19. s2dns.h s2dns.c \
  20. s2util.h s2time.c
  21. # ----------------------------------------------------------------------
  22. # Install and distribution rules
  23. EXTRA_DIST =
  24. # ----------------------------------------------------------------------
  25. # Tests
  26. TESTS =
  27. # ----------------------------------------------------------------------
  28. # Sofia specific rules
  29. include $(top_srcdir)/rules/sofia.am