Makefile 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. ALL=$(patsubst ccan/%/test, %, $(wildcard ccan/*/test))
  6. ALL_DIRS=$(patsubst %, ccan/%, $(ALL))
  7. ALL_DEPENDS=$(patsubst %, ccan/%/.depends, $(ALL))
  8. ALL_PAGES=$(patsubst ccan/%, $(WEBDIR)/info/%.html, $(ALL_DIRS))
  9. DIRECT_TARBALLS=$(patsubst ccan/%, $(WEBDIR)/tarballs/%.tar.bz2, $(ALL_DIRS))
  10. DEPEND_TARBALLS=$(patsubst ccan/%, $(WEBDIR)/tarballs/with-deps/%.tar.bz2, $(ALL_DIRS))
  11. WEB_SUBDIRS=$(WEBDIR)/tarballs $(WEBDIR)/junkcode $(WEBDIR)/tarballs/with-deps $(WEBDIR)/info
  12. JUNKDIRS=$(wildcard junkcode/*)
  13. JUNKPAGES=$(JUNKDIRS:%=$(WEBDIR)/%.html)
  14. JUNKBALLS=$(JUNKDIRS:%=$(WEBDIR)/%.tar.bz2)
  15. include Makefile-ccan
  16. check: $(ALL_DIRS:%=test-%)
  17. echo $(ALL_DIRS)
  18. distclean: clean
  19. rm -f $(ALL_DEPENDS)
  20. rm -rf $(WEBDIR)
  21. 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 $(JUNKPAGES) $(JUNKBALLS)
  22. $(WEB_SUBDIRS):
  23. mkdir -p $@
  24. $(WEBDIR)/junkcode/%.tar.bz2: junkcode/% $(WEBDIR)/junkcode
  25. tar cvfj $@ `bzr ls --versioned --kind=file $<`
  26. $(WEBDIR)/junkcode/%.html: $(WEBDIR)/junkcode/%.tar.bz2
  27. cd $(WEBDIR) && tar xfj junkcode/$*.tar.bz2
  28. php5 web/staticjunkcode.php junkcode/$* $* > $@
  29. # Override implicit attempt to link directory.
  30. $(ALL_DIRS):
  31. @touch $@
  32. $(WEBDIR)/ccan.tar.bz2:
  33. tar cvfj $@ `bzr ls --versioned --kind=file ccan`
  34. $(ALL_PAGES): tools/doc_extract web/staticmoduleinfo.php
  35. $(WEBDIR)/list.html: web/staticall.php tools/doc_extract $(DIRECT_TARBALLS) $(DEPEND_TARBALLS) $(WEBDIR)/ccan.tar.bz2 $(JUNKBALLS)
  36. php5 web/staticall.php ccan/ junkcode/ $(WEBDIR) > $@
  37. $(WEBDIR)/upload.html: web/staticupload.php
  38. php5 web/staticupload.php > $@
  39. # cpp inserts gratuitous linebreaks at start of file, makes for php problems.
  40. $(WEBDIR)/uploader.php: web/uploader.php.cpp
  41. cpp -w -C -P $< | grep . > $@
  42. $(WEBDIR)/index.html: web/staticindex.php
  43. php5 web/staticindex.php > $@
  44. $(WEBDIR)/example-config.h: config.h
  45. cp $< $@
  46. $(WEBDIR)/Makefile-ccan: Makefile-ccan
  47. cp $< $@
  48. $(WEBDIR)/ccan.jpg: web/ccan.jpg
  49. cp $< $@
  50. $(WEBDIR)/info/%.html: ccan/% ccan/%/test $(WEBDIR)/tarballs/%.tar.bz2 $(WEBDIR)/tarballs/with-deps/%.tar.bz2
  51. URLPREFIX=../ php5 web/staticmoduleinfo.php ccan/$* > $@
  52. $(WEBDIR)/tarballs/%.tar.bz2: ccan/% ccan/%/test
  53. tar -c -v -j -f $@ `bzr ls --versioned --kind=file ccan/$*`
  54. $(WEBDIR)/tarballs/with-deps/%.tar.bz2: ccan/% ccan/%/test tools/ccan_depends
  55. tar cvfj $@ $$(echo ccan/$* $$(tools/ccan_depends ccan/$*) | xargs -n 1 bzr ls --versioned --kind=file)
  56. $(ALL_DEPENDS): %/.depends: tools/ccan_depends
  57. tools/ccan_depends $* > $@ || ( rm -f $@; exit 1 )
  58. test-ccan/%: tools/run_tests libccan.a(%.o)
  59. @echo Testing $*...
  60. @if tools/run_tests $(V) ccan/$* | grep ^'not ok'; then exit 1; else exit 0; fi
  61. # Some don't have object files.
  62. test-ccan/%:: tools/run_tests
  63. @echo Testing $*...
  64. @if tools/run_tests $(V) ccan/$* | grep ^'not ok'; then exit 1; else exit 0; fi
  65. ccanlint: tools/ccanlint/ccanlint
  66. clean: tools-clean
  67. $(RM) `find . -name '*.o'` `find . -name '.depends'` `find . -name '*.a'` `find . -name _info`
  68. $(RM) inter-depends lib-depends test-depends
  69. # Only list a dependency if there are object files to build.
  70. inter-depends: $(ALL_DEPENDS)
  71. for f in $(ALL_DEPENDS); do echo test-ccan/$$(basename $$(dirname $$f) ): $$(for dir in $$(cat $$f); do [ "$$(echo $$dir/[a-z]*.c)" = "$$dir/[a-z]*.c" ] || echo libccan.a\("$$(basename $$dir)".o\); done); done > $@
  72. test-depends: $(ALL_DEPENDS)
  73. for f in $(ALL_DEPENDS); do echo test-ccan/`basename \`dirname $$f\``: `sed -n 's,ccan/\(.*\),test-ccan/\1,p' < $$f`; done > $@
  74. include tools/Makefile
  75. -include inter-depends
  76. -include test-depends