Makefile 668 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # Makefile
  3. #
  4. # $Id: //poco/1.4/PageCompiler/samples/HTTPTimeServer/Makefile#1 $
  5. #
  6. # Makefile for Poco HTTPTimeServer
  7. #
  8. include $(POCO_BASE)/build/rules/global
  9. # Where to find the PageCompiler executable
  10. PAGECOMPILER = $(POCO_BASE)/PageCompiler/bin/$(POCO_HOST_OSNAME)/$(POCO_HOST_OSARCH)/cpspc
  11. objects = HTTPTimeServerApp TimeHandler
  12. target = HTTPTimeServer
  13. target_version = 1
  14. target_libs = PocoUtil PocoJSON PocoNet PocoXML PocoFoundation
  15. include $(POCO_BASE)/build/rules/exec
  16. ifdef POCO_UNBUNDLED
  17. SYSLIBS += -lz -lpcre -lexpat
  18. endif
  19. # Rule for runnning PageCompiler
  20. src/%.cpp: src/%.cpsp
  21. @echo "** Compiling Page" $<
  22. $(PAGECOMPILER) $<