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