X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=Makefile;h=d3e05e9fcd256390642547ea701829fa0823705d;hp=e11ddc2794fbdd41c51e697e2eb7edfd5c6be981;hb=963fa5ca9303d146d635e2fba04814f4f791c559;hpb=ad8da11f6d0664e0fb3c8707a869425088daea7e diff --git a/Makefile b/Makefile index e11ddc27..d3e05e9f 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # V=--verbose for verbose tests. # This can be overridden on cmdline to generate pages elsewhere. -WEBDIR=webpages/ +WEBDIR=~/www/html/ccan/ CFLAGS=-g -Wall -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan -I. @@ -22,7 +22,7 @@ distclean: clean rm -f $(ALL_DEPENDS) rm -rf $(WEBDIR) -webpages: $(WEB_SUBDIRS) $(WEBDIR)/junkcode $(ALL_PAGES) $(WEBDIR)/list.html $(WEBDIR)/index.html $(WEBDIR)/upload.html $(WEBDIR)/example-config.h $(WEBDIR)/ccan.jpg $(DIRECT_TARBALLS) $(DEPEND_TARBALLS) $(WEBDIR)/ccan.tar.bz2 $(WEBDIR)/Makefile-ccan +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 $(WEB_SUBDIRS): mkdir -p $@ @@ -45,6 +45,10 @@ $(WEBDIR)/list.html: web/staticall.php tools/doc_extract $(DIRECT_TARBALLS) $(DE $(WEBDIR)/upload.html: web/staticupload.php php5 web/staticupload.php > $@ +# cpp inserts gratuitous linebreaks at start of file, makes for php problems. +$(WEBDIR)/uploader.php: web/uploader.php.cpp + cpp -w -C -P $< | grep . > $@ + $(WEBDIR)/index.html: web/staticindex.php php5 web/staticindex.php > $@