Makefile 585 B

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