Makefile.am 616 B

12345678910111213141516171819202122232425262728293031323334
  1. MAINTAINERCLEANFILES = Makefile.in
  2. SUBDIRS = util TermPrim Term TermView
  3. lib_LTLIBRARIES = libDtTerm.la
  4. libDtTerm_la_SOURCES =
  5. libDtTerm_la_LIBADD = Term/libTerm.la TermPrim/libTermPrim.la \
  6. TermView/libTermView.la
  7. if OPENBSD
  8. libDtTerm_la_LIBADD += -lutil
  9. endif
  10. if FREEBSD
  11. libDtTerm_la_LIBADD += -lutil
  12. endif
  13. if SOLARIS
  14. libDtTerm_la_LIBADD += -lgen
  15. endif
  16. if HAS_UTEMPTER_LIBRARY
  17. libDtTerm_la_LIBADD += -lutempter
  18. endif
  19. # in order to try to keep lib versions the same across platforms, (2.1.0)
  20. if BSD
  21. libDtTerm_la_LDFLAGS = -version-info 2:1:0
  22. else
  23. libDtTerm_la_LDFLAGS = -version-info 3:0:1
  24. endif