Makefile 592 B

123456789101112131415161718192021222324252627282930
  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. ifeq ($(findstring AIX, $(POCO_CONFIG)), AIX)
  15. SYSLIBS += -lssl_a -lcrypto_a -lz -ldl
  16. else
  17. SYSLIBS += -lssl -lcrypto -lz -ldl
  18. endif
  19. endif
  20. endif
  21. objects = Mail
  22. target = Mail
  23. target_version = 1
  24. target_libs = PocoNetSSL PocoNet PocoCrypto PocoUtil PocoJSON PocoXML PocoFoundation
  25. include $(POCO_BASE)/build/rules/exec