Makefile 518 B

1234567891011121314151617181920212223242526
  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. SYSLIBS += -lssl -lcrypto -lz -ldl
  12. endif
  13. objects = Twitter TweetApp
  14. target = tweet
  15. target_version = 1
  16. target_libs = PocoNetSSL PocoCrypto PocoNet PocoUtil PocoJSON PocoXML PocoFoundation
  17. include $(POCO_BASE)/build/rules/exec
  18. ifdef POCO_UNBUNDLED
  19. SYSLIBS += -lz -lpcre -lexpat
  20. endif