Makefile 441 B

12345678910111213141516171819202122
  1. #
  2. # Makefile
  3. #
  4. # Makefile for Poco download
  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. SYSLIBS += -lssl -lcrypto -lz -ldl
  12. endif
  13. objects = download
  14. target = download
  15. target_version = 1
  16. target_libs = PocoNetSSL PocoCrypto PocoNet PocoUtil PocoJSON PocoXML PocoFoundation
  17. include $(POCO_BASE)/build/rules/exec