Makefile 496 B

1234567891011121314151617181920212223242526
  1. #
  2. # Makefile
  3. #
  4. # Makefile for Poco Mail
  5. #
  6. include $(POCO_BASE)/build/rules/global
  7. # Note: linking order is important, do not change it.
  8. ifeq ($(POCO_CONFIG),FreeBSD)
  9. SYSLIBS += -lssl -lcrypto -lz
  10. else
  11. ifeq ($(POCO_CONFIG),QNX)
  12. SYSLIBS += -lssl -lcrypto -lz
  13. else
  14. SYSLIBS += -lssl -lcrypto -lz -ldl
  15. endif
  16. endif
  17. objects = Mail
  18. target = Mail
  19. target_version = 1
  20. target_libs = PocoNetSSL PocoNet PocoCrypto PocoUtil PocoJSON PocoXML PocoFoundation
  21. include $(POCO_BASE)/build/rules/exec