webmcp
annotate Makefile @ 11:d76a8857ba62
Added ui.partial and other functions, which allow partial content replacement using XMLHttpRequests; Image support for ui.link
Also includes following changes:
- Fix for rocketcgi library to accept POST data content-types, which contain additional charset information.
- Support arrays passed as params to encode.url (only for keys ending with "[]")
- Version information changed to "1.0.7"
Documentation for added functions is not yet complete.
Also includes following changes:
- Fix for rocketcgi library to accept POST data content-types, which contain additional charset information.
- Support arrays passed as params to encode.url (only for keys ending with "[]")
- Version information changed to "1.0.7"
Documentation for added functions is not yet complete.
| author | jbe/bsw | 
|---|---|
| date | Fri Feb 12 18:40:22 2010 +0100 (2010-02-12) | 
| parents | 9fdfb27f8e67 | 
| children | 30391b40722f | 
| rev | line source | 
|---|---|
| jbe/bsw@0 | 1 include Makefile.options | 
| jbe/bsw@0 | 2 | 
| jbe/bsw@0 | 3 all:: | 
| jbe/bsw@0 | 4 make documentation | 
| jbe/bsw@0 | 5 make accelerator | 
| jbe/bsw@0 | 6 make libraries | 
| jbe/bsw@0 | 7 make symlinks | 
| jbe/bsw@0 | 8 make precompile | 
| jbe/bsw@0 | 9 | 
| jbe/bsw@0 | 10 documentation:: | 
| jbe/bsw@0 | 11 rm -f doc/autodoc.tmp | 
| jbe/bsw@0 | 12 lua framework/bin/autodoc.lua framework/cgi-bin/ framework/env/ libraries/ > doc/autodoc.tmp | 
| jbe/bsw@0 | 13 cat doc/autodoc-header.htmlpart doc/autodoc.tmp doc/autodoc-footer.htmlpart > doc/autodoc.html | 
| jbe/bsw@0 | 14 rm -f doc/autodoc.tmp | 
| jbe/bsw@0 | 15 | 
| jbe/bsw@0 | 16 accelerator:: | 
| jbe/bsw@0 | 17 cd framework/accelerator; make | 
| jbe/bsw@0 | 18 | 
| jbe/bsw@0 | 19 libraries:: | 
| jbe/bsw@0 | 20 cd libraries/extos; make | 
| jbe/bsw@0 | 21 cd libraries/mondelefant; make | 
| jbe/bsw@0 | 22 cd libraries/multirand; make | 
| jbe/bsw@0 | 23 | 
| jbe/bsw@0 | 24 symlinks:: | 
| jbe/bsw@0 | 25 ln -s -f ../../libraries/atom/atom.lua framework/lib/ | 
| jbe/bsw@0 | 26 ln -s -f ../../libraries/extos/extos.so framework/lib/ | 
| jbe/bsw@0 | 27 ln -s -f ../../libraries/mondelefant/mondelefant.lua framework/lib/ | 
| jbe/bsw@0 | 28 ln -s -f ../../libraries/mondelefant/mondelefant_native.so framework/lib/ | 
| jbe/bsw@0 | 29 ln -s -f ../../libraries/mondelefant/mondelefant_atom_connector.lua framework/lib/ | 
| jbe/bsw@0 | 30 ln -s -f ../../libraries/multirand/multirand.so framework/lib/ | 
| jbe/bsw@0 | 31 ln -s -f ../../libraries/rocketcgi/rocketcgi.lua framework/lib/ | 
| jbe/bsw@0 | 32 ln -s -f ../../libraries/nihil/nihil.lua framework/lib/ | 
| jbe/bsw@0 | 33 ln -s -f ../../libraries/luatex/luatex.lua framework/lib/ | 
| jbe/bsw@0 | 34 | 
| jbe/bsw@0 | 35 precompile:: | 
| jbe/bsw@0 | 36 rm -Rf framework.precompiled | 
| jbe/bsw@0 | 37 rm -Rf demo-app.precompiled | 
| jbe/bsw@0 | 38 sh framework/bin/recursive-luac framework/ framework.precompiled/ | 
| jbe/bsw@0 | 39 rm -f framework.precompiled/accelerator/Makefile | 
| jbe/bsw@0 | 40 rm -f framework.precompiled/accelerator/webmcp_accelerator.c | 
| jbe/bsw@0 | 41 rm -f framework.precompiled/accelerator/webmcp_accelerator.o | 
| jbe/bsw@0 | 42 framework/bin/recursive-luac demo-app/ demo-app.precompiled/ | 
| jbe/bsw@0 | 43 | 
| jbe/bsw@0 | 44 clean:: | 
| jbe/bsw@0 | 45 rm -f doc/autodoc.tmp doc/autodoc.html | 
| jbe/bsw@0 | 46 rm -Rf framework.precompiled | 
| jbe/bsw@0 | 47 rm -Rf demo-app.precompiled | 
| jbe/bsw@0 | 48 rm -f demo-app/tmp/* | 
| jbe/bsw@0 | 49 rm -f framework/lib/* | 
| jbe/bsw@0 | 50 cd libraries/extos; make clean | 
| jbe/bsw@0 | 51 cd libraries/mondelefant; make clean | 
| jbe/bsw@0 | 52 cd libraries/multirand; make clean | 
| jbe/bsw@0 | 53 cd framework/accelerator; make clean |