root/trunk/Makefile

Revision 65, 1.0 kB (checked in by ajtack, 2 years ago)

Fixed all header-reception errors in overhaul_headers, and fixed a brace-matching problem (the hackish way) in overhaul_replyers.js. overhaul_replyers.js is now in the overlays include path.

Line 
1 #
2 # This makefile set up the following tree of documents in a new folder
3 #
4 #       overhaul/
5 #               content/
6 #                       overhaul/
7 #                               md5.js
8 #                               myDump.js
9 #                               overlays.xul
10 #                               overhaul_handler.js
11 #                               overhaul_headers.js
12 #                               overhaul_info.js
13 #                               parse_chunks_held.js
14 #                               parse_hosts.js
15 #                               parse_md5s.js
16 #                               parse_md5s.js
17 #
18 #               install.rdf
19 #               chrome.manifest
20 #               
21
22 OUTPUT_DIR = overhaul_ext
23
24 overhaul_ext: *
25         mkdir -p ${OUTPUT_DIR}/content/overhaul
26         cp overlays.xul ${OUTPUT_DIR}/content/overhaul
27         cp md5.js ${OUTPUT_DIR}/content/overhaul
28         cp myDump.js ${OUTPUT_DIR}/content/overhaul
29         cp overhaul_handler.js ${OUTPUT_DIR}/content/overhaul
30         cp overhaul_replyer.js ${OUTPUT_DIR}/content/overhaul
31         cp overhaul_headers.js ${OUTPUT_DIR}/content/overhaul
32         cp overhaul_info.js ${OUTPUT_DIR}/content/overhaul
33         cp parse_chunks_held.js ${OUTPUT_DIR}/content/overhaul
34         cp parse_hosts.js ${OUTPUT_DIR}/content/overhaul
35         cp parse_md5s.js ${OUTPUT_DIR}/content/overhaul
36        
37         cp install.rdf ${OUTPUT_DIR}
38        
39         cp chrome.manifest ${OUTPUT_DIR}
Note: See TracBrowser for help on using the browser.