Makefile 585 B

123456789101112131415161718192021222324252627282930
  1. #
  2. # Makefile
  3. #
  4. # Makefile for Poco Twitter Client
  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 = Twitter TweetApp
  18. target = tweet
  19. target_version = 1
  20. target_libs = PocoNetSSL PocoCrypto PocoNet PocoUtil PocoJSON PocoXML PocoFoundation
  21. include $(POCO_BASE)/build/rules/exec
  22. ifdef POCO_UNBUNDLED
  23. SYSLIBS += -lz -lpcre -lexpat
  24. endif