Makefile 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # Hacky makefile to compile everything and run the tests in some kind of sane order.
  2. # V=--verbose for verbose tests.
  3. # This can be overridden on cmdline to generate pages elsewhere.
  4. WEBDIR=~/www/html/ccan/
  5. CFLAGS=-g -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan -I.
  6. ALL=$(patsubst ccan/%/test, %, $(wildcard ccan/*/test))
  7. ALL_DIRS=$(patsubst %, ccan/%, $(ALL))
  8. ALL_DEPENDS=$(patsubst %, ccan/%/.depends, $(ALL))
  9. ALL_PAGES=$(patsubst ccan/%, $(WEBDIR)/info/%.html, $(ALL_DIRS))
  10. DIRECT_TARBALLS=$(patsubst ccan/%, $(WEBDIR)/tarballs/%.tar.bz2, $(ALL_DIRS))
  11. DEPEND_TARBALLS=$(patsubst ccan/%, $(WEBDIR)/tarballs/with-deps/%.tar.bz2, $(ALL_DIRS))
  12. WEB_SUBDIRS=$(WEBDIR)/tarballs $(WEBDIR)/tarballs/with-deps $(WEBDIR)/info
  13. include Makefile-ccan
  14. check: $(ALL_DIRS:%=test-%)
  15. distclean: clean
  16. rm -f $(ALL_DEPENDS)
  17. rm -rf $(WEBDIR)
  18. webpages: $(WEB_SUBDIRS) $(WEBDIR)/junkcode $(ALL_PAGES) $(WEBDIR)/list.html $(WEBDIR)/index.html $(WEBDIR)/upload.html $(WEBDIR)/uploader.php $(WEBDIR)/example-config.h $(WEBDIR)/ccan.jpg $(DIRECT_TARBALLS) $(DEPEND_TARBALLS) $(WEBDIR)/ccan.tar.bz2 $(WEBDIR)/Makefile-ccan
  19. $(WEB_SUBDIRS):
  20. mkdir -p $@
  21. $(WEBDIR)/junkcode:
  22. cp -a junkcode $@
  23. # Override implicit attempt to link directory.
  24. $(ALL_DIRS):
  25. @touch $@
  26. $(WEBDIR)/ccan.tar.bz2:
  27. tar cvfj $@ `bzr ls --versioned --kind=file ccan`
  28. $(ALL_PAGES): tools/doc_extract web/staticmoduleinfo.php
  29. $(WEBDIR)/list.html: web/staticall.php tools/doc_extract $(DIRECT_TARBALLS) $(DEPEND_TARBALLS) $(WEBDIR)/ccan.tar.bz2
  30. php5 web/staticall.php ccan/ $(WEBDIR) > $@
  31. $(WEBDIR)/upload.html: web/staticupload.php
  32. php5 web/staticupload.php > $@
  33. # cpp inserts gratuitous linebreaks at start of file, makes for php problems.
  34. $(WEBDIR)/uploader.php: web/uploader.php.cpp
  35. cpp -w -C -P $< | grep . > $@
  36. $(WEBDIR)/index.html: web/staticindex.php
  37. php5 web/staticindex.php > $@
  38. $(WEBDIR)/example-config.h: config.h
  39. cp $< $@
  40. $(WEBDIR)/Makefile-ccan: Makefile-ccan
  41. cp $< $@
  42. $(WEBDIR)/ccan.jpg: web/ccan.jpg
  43. cp $< $@
  44. $(WEBDIR)/info/%.html: ccan/% ccan/%/test $(WEBDIR)/tarballs/%.tar.bz2 $(WEBDIR)/tarballs/with-deps/%.tar.bz2
  45. URLPREFIX=../ php5 web/staticmoduleinfo.php ccan/$* > $@
  46. $(WEBDIR)/tarballs/%.tar.bz2: ccan/% ccan/%/test
  47. tar -c -v -j -f $@ `bzr ls --versioned --kind=file ccan/$*`
  48. $(WEBDIR)/tarballs/with-deps/%.tar.bz2: ccan/% ccan/%/test tools/ccan_depends
  49. tar cvfj $@ $$(echo ccan/$* $$(tools/ccan_depends ccan/$*) | xargs -n 1 bzr ls --versioned --kind=file)
  50. $(ALL_DEPENDS): %/.depends: tools/ccan_depends
  51. tools/ccan_depends $* > $@ || ( rm -f $@; exit 1 )
  52. test-ccan/%: tools/run_tests ccan/%.o
  53. @echo Testing $*...
  54. @if tools/run_tests $(V) ccan/$* | grep ^'not ok'; then exit 1; else exit 0; fi
  55. ccanlint: tools/ccanlint/ccanlint
  56. clean: tools-clean
  57. $(RM) `find . -name '*.o'` `find . -name '.depends'` `find . -name '*.a'` `find . -name _info`
  58. $(RM) inter-depends lib-depends test-depends
  59. inter-depends: $(ALL_DEPENDS)
  60. for f in $(ALL_DEPENDS); do echo test-ccan/`basename \`dirname $$f\``: `sed -n 's,ccan/\(.*\),ccan/\1.o,p' < $$f`; done > $@
  61. test-depends: $(ALL_DEPENDS)
  62. for f in $(ALL_DEPENDS); do echo test-ccan/`basename \`dirname $$f\``: `sed -n 's,ccan/\(.*\),test-ccan/\1,p' < $$f`; done > $@
  63. include tools/Makefile
  64. -include inter-depends
  65. -include test-depends