Makefile 687 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # Makefile
  3. #
  4. # Makefile for Poco HTTPSTimeServer
  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 = HTTPSTimeServer
  22. target = HTTPSTimeServer
  23. target_version = 1
  24. target_libs = PocoNetSSL PocoCrypto PocoNet PocoUtil PocoJSON PocoXML PocoFoundation
  25. include $(POCO_BASE)/build/rules/exec
  26. ifdef POCO_UNBUNDLED
  27. SYSLIBS += -lpcre -lexpat
  28. endif