pygments.rb-jruby 0.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (473) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +6 -0
  3. data/CHANGELOG.md +71 -0
  4. data/Gemfile +2 -0
  5. data/LICENSE +17 -0
  6. data/README.md +118 -0
  7. data/Rakefile +66 -0
  8. data/bench.rb +22 -0
  9. data/cache-lexers.rb +8 -0
  10. data/lexers +0 -0
  11. data/lib/pygments.rb +8 -0
  12. data/lib/pygments/lexer.rb +148 -0
  13. data/lib/pygments/mentos.py +351 -0
  14. data/lib/pygments/popen.rb +404 -0
  15. data/lib/pygments/version.rb +3 -0
  16. data/pygments.rb.gemspec +24 -0
  17. data/test/test_data.c +2581 -0
  18. data/test/test_data.py +514 -0
  19. data/test/test_data_generated +2582 -0
  20. data/test/test_pygments.rb +287 -0
  21. data/vendor/custom_lexers/github.py +565 -0
  22. data/vendor/pygments-main/AUTHORS +153 -0
  23. data/vendor/pygments-main/CHANGES +889 -0
  24. data/vendor/pygments-main/LICENSE +25 -0
  25. data/vendor/pygments-main/MANIFEST.in +6 -0
  26. data/vendor/pygments-main/Makefile +59 -0
  27. data/vendor/pygments-main/REVISION +1 -0
  28. data/vendor/pygments-main/TODO +15 -0
  29. data/vendor/pygments-main/docs/generate.py +472 -0
  30. data/vendor/pygments-main/docs/pygmentize.1 +94 -0
  31. data/vendor/pygments-main/docs/src/api.txt +270 -0
  32. data/vendor/pygments-main/docs/src/authors.txt +5 -0
  33. data/vendor/pygments-main/docs/src/changelog.txt +5 -0
  34. data/vendor/pygments-main/docs/src/cmdline.txt +147 -0
  35. data/vendor/pygments-main/docs/src/filterdevelopment.txt +70 -0
  36. data/vendor/pygments-main/docs/src/filters.txt +42 -0
  37. data/vendor/pygments-main/docs/src/formatterdevelopment.txt +169 -0
  38. data/vendor/pygments-main/docs/src/formatters.txt +48 -0
  39. data/vendor/pygments-main/docs/src/index.txt +69 -0
  40. data/vendor/pygments-main/docs/src/installation.txt +71 -0
  41. data/vendor/pygments-main/docs/src/integrate.txt +48 -0
  42. data/vendor/pygments-main/docs/src/java.txt +70 -0
  43. data/vendor/pygments-main/docs/src/lexerdevelopment.txt +603 -0
  44. data/vendor/pygments-main/docs/src/lexers.txt +67 -0
  45. data/vendor/pygments-main/docs/src/moinmoin.txt +39 -0
  46. data/vendor/pygments-main/docs/src/plugins.txt +93 -0
  47. data/vendor/pygments-main/docs/src/quickstart.txt +202 -0
  48. data/vendor/pygments-main/docs/src/rstdirective.txt +22 -0
  49. data/vendor/pygments-main/docs/src/styles.txt +143 -0
  50. data/vendor/pygments-main/docs/src/tokens.txt +349 -0
  51. data/vendor/pygments-main/docs/src/unicode.txt +49 -0
  52. data/vendor/pygments-main/external/autopygmentize +64 -0
  53. data/vendor/pygments-main/external/lasso-builtins-generator-9.lasso +144 -0
  54. data/vendor/pygments-main/external/markdown-processor.py +67 -0
  55. data/vendor/pygments-main/external/moin-parser.py +112 -0
  56. data/vendor/pygments-main/external/pygments.bashcomp +38 -0
  57. data/vendor/pygments-main/external/rst-directive-old.py +77 -0
  58. data/vendor/pygments-main/external/rst-directive.py +83 -0
  59. data/vendor/pygments-main/ez_setup.py +276 -0
  60. data/vendor/pygments-main/pygmentize +7 -0
  61. data/vendor/pygments-main/pygments/__init__.py +91 -0
  62. data/vendor/pygments-main/pygments/cmdline.py +441 -0
  63. data/vendor/pygments-main/pygments/console.py +74 -0
  64. data/vendor/pygments-main/pygments/filter.py +74 -0
  65. data/vendor/pygments-main/pygments/filters/__init__.py +356 -0
  66. data/vendor/pygments-main/pygments/formatter.py +95 -0
  67. data/vendor/pygments-main/pygments/formatters/__init__.py +68 -0
  68. data/vendor/pygments-main/pygments/formatters/_mapping.py +92 -0
  69. data/vendor/pygments-main/pygments/formatters/bbcode.py +109 -0
  70. data/vendor/pygments-main/pygments/formatters/html.py +821 -0
  71. data/vendor/pygments-main/pygments/formatters/img.py +553 -0
  72. data/vendor/pygments-main/pygments/formatters/latex.py +378 -0
  73. data/vendor/pygments-main/pygments/formatters/other.py +115 -0
  74. data/vendor/pygments-main/pygments/formatters/rtf.py +136 -0
  75. data/vendor/pygments-main/pygments/formatters/svg.py +154 -0
  76. data/vendor/pygments-main/pygments/formatters/terminal.py +112 -0
  77. data/vendor/pygments-main/pygments/formatters/terminal256.py +222 -0
  78. data/vendor/pygments-main/pygments/lexer.py +765 -0
  79. data/vendor/pygments-main/pygments/lexers/__init__.py +240 -0
  80. data/vendor/pygments-main/pygments/lexers/_asybuiltins.py +1645 -0
  81. data/vendor/pygments-main/pygments/lexers/_clbuiltins.py +232 -0
  82. data/vendor/pygments-main/pygments/lexers/_lassobuiltins.py +5172 -0
  83. data/vendor/pygments-main/pygments/lexers/_luabuiltins.py +249 -0
  84. data/vendor/pygments-main/pygments/lexers/_mapping.py +354 -0
  85. data/vendor/pygments-main/pygments/lexers/_openedgebuiltins.py +562 -0
  86. data/vendor/pygments-main/pygments/lexers/_phpbuiltins.py +3787 -0
  87. data/vendor/pygments-main/pygments/lexers/_postgres_builtins.py +233 -0
  88. data/vendor/pygments-main/pygments/lexers/_robotframeworklexer.py +557 -0
  89. data/vendor/pygments-main/pygments/lexers/_scilab_builtins.py +40 -0
  90. data/vendor/pygments-main/pygments/lexers/_sourcemodbuiltins.py +1072 -0
  91. data/vendor/pygments-main/pygments/lexers/_stan_builtins.py +360 -0
  92. data/vendor/pygments-main/pygments/lexers/_vimbuiltins.py +13 -0
  93. data/vendor/pygments-main/pygments/lexers/agile.py +2290 -0
  94. data/vendor/pygments-main/pygments/lexers/asm.py +398 -0
  95. data/vendor/pygments-main/pygments/lexers/compiled.py +3723 -0
  96. data/vendor/pygments-main/pygments/lexers/dalvik.py +104 -0
  97. data/vendor/pygments-main/pygments/lexers/dotnet.py +671 -0
  98. data/vendor/pygments-main/pygments/lexers/foxpro.py +428 -0
  99. data/vendor/pygments-main/pygments/lexers/functional.py +2731 -0
  100. data/vendor/pygments-main/pygments/lexers/github.py +565 -0
  101. data/vendor/pygments-main/pygments/lexers/hdl.py +356 -0
  102. data/vendor/pygments-main/pygments/lexers/jvm.py +1112 -0
  103. data/vendor/pygments-main/pygments/lexers/math.py +1918 -0
  104. data/vendor/pygments-main/pygments/lexers/other.py +3778 -0
  105. data/vendor/pygments-main/pygments/lexers/parsers.py +778 -0
  106. data/vendor/pygments-main/pygments/lexers/shell.py +424 -0
  107. data/vendor/pygments-main/pygments/lexers/special.py +100 -0
  108. data/vendor/pygments-main/pygments/lexers/sql.py +559 -0
  109. data/vendor/pygments-main/pygments/lexers/templates.py +1742 -0
  110. data/vendor/pygments-main/pygments/lexers/text.py +1893 -0
  111. data/vendor/pygments-main/pygments/lexers/web.py +4045 -0
  112. data/vendor/pygments-main/pygments/modeline.py +40 -0
  113. data/vendor/pygments-main/pygments/plugin.py +74 -0
  114. data/vendor/pygments-main/pygments/scanner.py +104 -0
  115. data/vendor/pygments-main/pygments/style.py +117 -0
  116. data/vendor/pygments-main/pygments/styles/__init__.py +70 -0
  117. data/vendor/pygments-main/pygments/styles/autumn.py +65 -0
  118. data/vendor/pygments-main/pygments/styles/borland.py +51 -0
  119. data/vendor/pygments-main/pygments/styles/bw.py +49 -0
  120. data/vendor/pygments-main/pygments/styles/colorful.py +81 -0
  121. data/vendor/pygments-main/pygments/styles/default.py +73 -0
  122. data/vendor/pygments-main/pygments/styles/emacs.py +72 -0
  123. data/vendor/pygments-main/pygments/styles/friendly.py +72 -0
  124. data/vendor/pygments-main/pygments/styles/fruity.py +42 -0
  125. data/vendor/pygments-main/pygments/styles/manni.py +75 -0
  126. data/vendor/pygments-main/pygments/styles/monokai.py +106 -0
  127. data/vendor/pygments-main/pygments/styles/murphy.py +80 -0
  128. data/vendor/pygments-main/pygments/styles/native.py +65 -0
  129. data/vendor/pygments-main/pygments/styles/pastie.py +75 -0
  130. data/vendor/pygments-main/pygments/styles/perldoc.py +69 -0
  131. data/vendor/pygments-main/pygments/styles/rrt.py +33 -0
  132. data/vendor/pygments-main/pygments/styles/tango.py +141 -0
  133. data/vendor/pygments-main/pygments/styles/trac.py +63 -0
  134. data/vendor/pygments-main/pygments/styles/vim.py +63 -0
  135. data/vendor/pygments-main/pygments/styles/vs.py +38 -0
  136. data/vendor/pygments-main/pygments/token.py +195 -0
  137. data/vendor/pygments-main/pygments/unistring.py +140 -0
  138. data/vendor/pygments-main/pygments/util.py +277 -0
  139. data/vendor/pygments-main/scripts/check_sources.py +242 -0
  140. data/vendor/pygments-main/scripts/detect_missing_analyse_text.py +32 -0
  141. data/vendor/pygments-main/scripts/epydoc.css +280 -0
  142. data/vendor/pygments-main/scripts/find_codetags.py +205 -0
  143. data/vendor/pygments-main/scripts/find_error.py +170 -0
  144. data/vendor/pygments-main/scripts/get_vimkw.py +43 -0
  145. data/vendor/pygments-main/scripts/pylintrc +301 -0
  146. data/vendor/pygments-main/scripts/reindent.py +291 -0
  147. data/vendor/pygments-main/scripts/vim2pygments.py +933 -0
  148. data/vendor/pygments-main/setup.cfg +7 -0
  149. data/vendor/pygments-main/setup.py +90 -0
  150. data/vendor/pygments-main/tests/dtds/HTML4-f.dtd +37 -0
  151. data/vendor/pygments-main/tests/dtds/HTML4-s.dtd +869 -0
  152. data/vendor/pygments-main/tests/dtds/HTML4.dcl +88 -0
  153. data/vendor/pygments-main/tests/dtds/HTML4.dtd +1092 -0
  154. data/vendor/pygments-main/tests/dtds/HTML4.soc +9 -0
  155. data/vendor/pygments-main/tests/dtds/HTMLlat1.ent +195 -0
  156. data/vendor/pygments-main/tests/dtds/HTMLspec.ent +77 -0
  157. data/vendor/pygments-main/tests/dtds/HTMLsym.ent +241 -0
  158. data/vendor/pygments-main/tests/examplefiles/ANTLRv3.g +608 -0
  159. data/vendor/pygments-main/tests/examplefiles/AcidStateAdvanced.hs +209 -0
  160. data/vendor/pygments-main/tests/examplefiles/AlternatingGroup.mu +102 -0
  161. data/vendor/pygments-main/tests/examplefiles/BOM.js +1 -0
  162. data/vendor/pygments-main/tests/examplefiles/CPDictionary.j +611 -0
  163. data/vendor/pygments-main/tests/examplefiles/Config.in.cache +1973 -0
  164. data/vendor/pygments-main/tests/examplefiles/Constants.mo +158 -0
  165. data/vendor/pygments-main/tests/examplefiles/DancingSudoku.lhs +411 -0
  166. data/vendor/pygments-main/tests/examplefiles/Deflate.fs +578 -0
  167. data/vendor/pygments-main/tests/examplefiles/Errors.scala +18 -0
  168. data/vendor/pygments-main/tests/examplefiles/File.hy +174 -0
  169. data/vendor/pygments-main/tests/examplefiles/Get-CommandDefinitionHtml.ps1 +66 -0
  170. data/vendor/pygments-main/tests/examplefiles/IPDispatchC.nc +104 -0
  171. data/vendor/pygments-main/tests/examplefiles/IPDispatchP.nc +671 -0
  172. data/vendor/pygments-main/tests/examplefiles/Intro.java +1660 -0
  173. data/vendor/pygments-main/tests/examplefiles/Makefile +1131 -0
  174. data/vendor/pygments-main/tests/examplefiles/Object.st +4394 -0
  175. data/vendor/pygments-main/tests/examplefiles/OrderedMap.hx +584 -0
  176. data/vendor/pygments-main/tests/examplefiles/RoleQ.pm6 +23 -0
  177. data/vendor/pygments-main/tests/examplefiles/SmallCheck.hs +378 -0
  178. data/vendor/pygments-main/tests/examplefiles/Sorting.mod +470 -0
  179. data/vendor/pygments-main/tests/examplefiles/Sudoku.lhs +382 -0
  180. data/vendor/pygments-main/tests/examplefiles/addressbook.proto +30 -0
  181. data/vendor/pygments-main/tests/examplefiles/antlr_throws +1 -0
  182. data/vendor/pygments-main/tests/examplefiles/apache2.conf +393 -0
  183. data/vendor/pygments-main/tests/examplefiles/as3_test.as +143 -0
  184. data/vendor/pygments-main/tests/examplefiles/as3_test2.as +46 -0
  185. data/vendor/pygments-main/tests/examplefiles/as3_test3.as +3 -0
  186. data/vendor/pygments-main/tests/examplefiles/aspx-cs_example +27 -0
  187. data/vendor/pygments-main/tests/examplefiles/autoit_submit.au3 +25 -0
  188. data/vendor/pygments-main/tests/examplefiles/badcase.java +2 -0
  189. data/vendor/pygments-main/tests/examplefiles/batchfile.bat +49 -0
  190. data/vendor/pygments-main/tests/examplefiles/bigtest.nsi +308 -0
  191. data/vendor/pygments-main/tests/examplefiles/boot-9.scm +1557 -0
  192. data/vendor/pygments-main/tests/examplefiles/ca65_example +284 -0
  193. data/vendor/pygments-main/tests/examplefiles/cbmbas_example +9 -0
  194. data/vendor/pygments-main/tests/examplefiles/cells.ps +515 -0
  195. data/vendor/pygments-main/tests/examplefiles/ceval.c +2604 -0
  196. data/vendor/pygments-main/tests/examplefiles/cheetah_example.html +13 -0
  197. data/vendor/pygments-main/tests/examplefiles/classes.dylan +125 -0
  198. data/vendor/pygments-main/tests/examplefiles/condensed_ruby.rb +10 -0
  199. data/vendor/pygments-main/tests/examplefiles/coq_RelationClasses +447 -0
  200. data/vendor/pygments-main/tests/examplefiles/database.pytb +20 -0
  201. data/vendor/pygments-main/tests/examplefiles/de.MoinMoin.po +2461 -0
  202. data/vendor/pygments-main/tests/examplefiles/demo.ahk +181 -0
  203. data/vendor/pygments-main/tests/examplefiles/demo.cfm +38 -0
  204. data/vendor/pygments-main/tests/examplefiles/django_sample.html+django +68 -0
  205. data/vendor/pygments-main/tests/examplefiles/dwarf.cw +17 -0
  206. data/vendor/pygments-main/tests/examplefiles/erl_session +10 -0
  207. data/vendor/pygments-main/tests/examplefiles/escape_semicolon.clj +1 -0
  208. data/vendor/pygments-main/tests/examplefiles/evil_regex.js +48 -0
  209. data/vendor/pygments-main/tests/examplefiles/example.Rd +78 -0
  210. data/vendor/pygments-main/tests/examplefiles/example.bug +54 -0
  211. data/vendor/pygments-main/tests/examplefiles/example.c +2080 -0
  212. data/vendor/pygments-main/tests/examplefiles/example.ceylon +52 -0
  213. data/vendor/pygments-main/tests/examplefiles/example.clay +33 -0
  214. data/vendor/pygments-main/tests/examplefiles/example.cls +15 -0
  215. data/vendor/pygments-main/tests/examplefiles/example.cob +3556 -0
  216. data/vendor/pygments-main/tests/examplefiles/example.cpp +2363 -0
  217. data/vendor/pygments-main/tests/examplefiles/example.gs +106 -0
  218. data/vendor/pygments-main/tests/examplefiles/example.gst +7 -0
  219. data/vendor/pygments-main/tests/examplefiles/example.hx +142 -0
  220. data/vendor/pygments-main/tests/examplefiles/example.jag +48 -0
  221. data/vendor/pygments-main/tests/examplefiles/example.kt +47 -0
  222. data/vendor/pygments-main/tests/examplefiles/example.lagda +19 -0
  223. data/vendor/pygments-main/tests/examplefiles/example.lua +250 -0
  224. data/vendor/pygments-main/tests/examplefiles/example.monkey +152 -0
  225. data/vendor/pygments-main/tests/examplefiles/example.moo +26 -0
  226. data/vendor/pygments-main/tests/examplefiles/example.moon +629 -0
  227. data/vendor/pygments-main/tests/examplefiles/example.msc +43 -0
  228. data/vendor/pygments-main/tests/examplefiles/example.nim +1010 -0
  229. data/vendor/pygments-main/tests/examplefiles/example.ns2 +69 -0
  230. data/vendor/pygments-main/tests/examplefiles/example.p +34 -0
  231. data/vendor/pygments-main/tests/examplefiles/example.pas +2708 -0
  232. data/vendor/pygments-main/tests/examplefiles/example.prg +161 -0
  233. data/vendor/pygments-main/tests/examplefiles/example.rb +1852 -0
  234. data/vendor/pygments-main/tests/examplefiles/example.reg +19 -0
  235. data/vendor/pygments-main/tests/examplefiles/example.rexx +50 -0
  236. data/vendor/pygments-main/tests/examplefiles/example.rhtml +561 -0
  237. data/vendor/pygments-main/tests/examplefiles/example.rkt +95 -0
  238. data/vendor/pygments-main/tests/examplefiles/example.rpf +4 -0
  239. data/vendor/pygments-main/tests/examplefiles/example.sh-session +19 -0
  240. data/vendor/pygments-main/tests/examplefiles/example.shell-session +45 -0
  241. data/vendor/pygments-main/tests/examplefiles/example.sml +156 -0
  242. data/vendor/pygments-main/tests/examplefiles/example.snobol +15 -0
  243. data/vendor/pygments-main/tests/examplefiles/example.stan +108 -0
  244. data/vendor/pygments-main/tests/examplefiles/example.tea +34 -0
  245. data/vendor/pygments-main/tests/examplefiles/example.ts +28 -0
  246. data/vendor/pygments-main/tests/examplefiles/example.u +548 -0
  247. data/vendor/pygments-main/tests/examplefiles/example.weechatlog +9 -0
  248. data/vendor/pygments-main/tests/examplefiles/example.xhtml +376 -0
  249. data/vendor/pygments-main/tests/examplefiles/example.xtend +34 -0
  250. data/vendor/pygments-main/tests/examplefiles/example.yaml +302 -0
  251. data/vendor/pygments-main/tests/examplefiles/example2.aspx +29 -0
  252. data/vendor/pygments-main/tests/examplefiles/example2.msc +79 -0
  253. data/vendor/pygments-main/tests/examplefiles/example_elixir.ex +363 -0
  254. data/vendor/pygments-main/tests/examplefiles/example_file.fy +128 -0
  255. data/vendor/pygments-main/tests/examplefiles/firefox.mak +586 -0
  256. data/vendor/pygments-main/tests/examplefiles/flipflop.sv +19 -0
  257. data/vendor/pygments-main/tests/examplefiles/foo.sce +6 -0
  258. data/vendor/pygments-main/tests/examplefiles/format.ml +1213 -0
  259. data/vendor/pygments-main/tests/examplefiles/fucked_up.rb +77 -0
  260. data/vendor/pygments-main/tests/examplefiles/function.mu +1 -0
  261. data/vendor/pygments-main/tests/examplefiles/functional.rst +1472 -0
  262. data/vendor/pygments-main/tests/examplefiles/garcia-wachs.kk +133 -0
  263. data/vendor/pygments-main/tests/examplefiles/genclass.clj +510 -0
  264. data/vendor/pygments-main/tests/examplefiles/genshi_example.xml+genshi +193 -0
  265. data/vendor/pygments-main/tests/examplefiles/genshitext_example.genshitext +33 -0
  266. data/vendor/pygments-main/tests/examplefiles/glsl.frag +7 -0
  267. data/vendor/pygments-main/tests/examplefiles/glsl.vert +13 -0
  268. data/vendor/pygments-main/tests/examplefiles/grammar-test.p6 +22 -0
  269. data/vendor/pygments-main/tests/examplefiles/hello.smali +40 -0
  270. data/vendor/pygments-main/tests/examplefiles/hello.sp +9 -0
  271. data/vendor/pygments-main/tests/examplefiles/html+php_faulty.php +1 -0
  272. data/vendor/pygments-main/tests/examplefiles/http_request_example +15 -0
  273. data/vendor/pygments-main/tests/examplefiles/http_response_example +29 -0
  274. data/vendor/pygments-main/tests/examplefiles/import.hs +4 -0
  275. data/vendor/pygments-main/tests/examplefiles/inet_pton6.dg +71 -0
  276. data/vendor/pygments-main/tests/examplefiles/intro.ik +24 -0
  277. data/vendor/pygments-main/tests/examplefiles/ints.php +10 -0
  278. data/vendor/pygments-main/tests/examplefiles/intsyn.fun +675 -0
  279. data/vendor/pygments-main/tests/examplefiles/intsyn.sig +286 -0
  280. data/vendor/pygments-main/tests/examplefiles/irb_heredoc +8 -0
  281. data/vendor/pygments-main/tests/examplefiles/irc.lsp +214 -0
  282. data/vendor/pygments-main/tests/examplefiles/java.properties +16 -0
  283. data/vendor/pygments-main/tests/examplefiles/jbst_example1.jbst +28 -0
  284. data/vendor/pygments-main/tests/examplefiles/jbst_example2.jbst +45 -0
  285. data/vendor/pygments-main/tests/examplefiles/jinjadesignerdoc.rst +713 -0
  286. data/vendor/pygments-main/tests/examplefiles/json.lasso +301 -0
  287. data/vendor/pygments-main/tests/examplefiles/json.lasso9 +213 -0
  288. data/vendor/pygments-main/tests/examplefiles/lighttpd_config.conf +13 -0
  289. data/vendor/pygments-main/tests/examplefiles/linecontinuation.py +47 -0
  290. data/vendor/pygments-main/tests/examplefiles/livescript-demo.ls +41 -0
  291. data/vendor/pygments-main/tests/examplefiles/logos_example.xm +28 -0
  292. data/vendor/pygments-main/tests/examplefiles/ltmain.sh +2849 -0
  293. data/vendor/pygments-main/tests/examplefiles/main.cmake +42 -0
  294. data/vendor/pygments-main/tests/examplefiles/markdown.lsp +679 -0
  295. data/vendor/pygments-main/tests/examplefiles/matlab_noreturn +3 -0
  296. data/vendor/pygments-main/tests/examplefiles/matlab_sample +30 -0
  297. data/vendor/pygments-main/tests/examplefiles/matlabsession_sample.txt +37 -0
  298. data/vendor/pygments-main/tests/examplefiles/metagrammar.treetop +455 -0
  299. data/vendor/pygments-main/tests/examplefiles/mg_sample.pro +73 -0
  300. data/vendor/pygments-main/tests/examplefiles/minehunt.qml +112 -0
  301. data/vendor/pygments-main/tests/examplefiles/minimal.ns2 +4 -0
  302. data/vendor/pygments-main/tests/examplefiles/moin_SyntaxReference.txt +340 -0
  303. data/vendor/pygments-main/tests/examplefiles/multiline_regexes.rb +38 -0
  304. data/vendor/pygments-main/tests/examplefiles/nanomsg.intr +95 -0
  305. data/vendor/pygments-main/tests/examplefiles/nasm_aoutso.asm +96 -0
  306. data/vendor/pygments-main/tests/examplefiles/nasm_objexe.asm +30 -0
  307. data/vendor/pygments-main/tests/examplefiles/nemerle_sample.n +87 -0
  308. data/vendor/pygments-main/tests/examplefiles/nginx_nginx.conf +118 -0
  309. data/vendor/pygments-main/tests/examplefiles/numbers.c +12 -0
  310. data/vendor/pygments-main/tests/examplefiles/objc_example.m +32 -0
  311. data/vendor/pygments-main/tests/examplefiles/objc_example2.m +24 -0
  312. data/vendor/pygments-main/tests/examplefiles/perl_misc +62 -0
  313. data/vendor/pygments-main/tests/examplefiles/perl_perl5db +998 -0
  314. data/vendor/pygments-main/tests/examplefiles/perl_regex-delims +120 -0
  315. data/vendor/pygments-main/tests/examplefiles/perlfunc.1 +856 -0
  316. data/vendor/pygments-main/tests/examplefiles/phpMyAdmin.spec +163 -0
  317. data/vendor/pygments-main/tests/examplefiles/phpcomplete.vim +567 -0
  318. data/vendor/pygments-main/tests/examplefiles/pleac.in.rb +1223 -0
  319. data/vendor/pygments-main/tests/examplefiles/postgresql_test.txt +47 -0
  320. data/vendor/pygments-main/tests/examplefiles/pppoe.applescript +10 -0
  321. data/vendor/pygments-main/tests/examplefiles/psql_session.txt +122 -0
  322. data/vendor/pygments-main/tests/examplefiles/py3_test.txt +2 -0
  323. data/vendor/pygments-main/tests/examplefiles/py3tb_test.py3tb +4 -0
  324. data/vendor/pygments-main/tests/examplefiles/pycon_test.pycon +14 -0
  325. data/vendor/pygments-main/tests/examplefiles/pytb_test2.pytb +2 -0
  326. data/vendor/pygments-main/tests/examplefiles/pytb_test3.pytb +4 -0
  327. data/vendor/pygments-main/tests/examplefiles/python25-bsd.mak +234 -0
  328. data/vendor/pygments-main/tests/examplefiles/qsort.prolog +13 -0
  329. data/vendor/pygments-main/tests/examplefiles/r-console-transcript.Rout +38 -0
  330. data/vendor/pygments-main/tests/examplefiles/ragel-cpp_rlscan +280 -0
  331. data/vendor/pygments-main/tests/examplefiles/ragel-cpp_snippet +2 -0
  332. data/vendor/pygments-main/tests/examplefiles/regex.js +22 -0
  333. data/vendor/pygments-main/tests/examplefiles/reversi.lsp +427 -0
  334. data/vendor/pygments-main/tests/examplefiles/robotframework.txt +39 -0
  335. data/vendor/pygments-main/tests/examplefiles/ruby_func_def.rb +11 -0
  336. data/vendor/pygments-main/tests/examplefiles/rust_example.rs +233 -0
  337. data/vendor/pygments-main/tests/examplefiles/scilab.sci +30 -0
  338. data/vendor/pygments-main/tests/examplefiles/session.dylan-console +9 -0
  339. data/vendor/pygments-main/tests/examplefiles/sibling.prolog +19 -0
  340. data/vendor/pygments-main/tests/examplefiles/simple.md +747 -0
  341. data/vendor/pygments-main/tests/examplefiles/smarty_example.html +209 -0
  342. data/vendor/pygments-main/tests/examplefiles/source.lgt +343 -0
  343. data/vendor/pygments-main/tests/examplefiles/sources.list +62 -0
  344. data/vendor/pygments-main/tests/examplefiles/sphere.pov +18 -0
  345. data/vendor/pygments-main/tests/examplefiles/sqlite3.sqlite3-console +27 -0
  346. data/vendor/pygments-main/tests/examplefiles/squid.conf +30 -0
  347. data/vendor/pygments-main/tests/examplefiles/string.jl +1031 -0
  348. data/vendor/pygments-main/tests/examplefiles/string_delimiters.d +21 -0
  349. data/vendor/pygments-main/tests/examplefiles/stripheredoc.sh +3 -0
  350. data/vendor/pygments-main/tests/examplefiles/swig_java.swg +1329 -0
  351. data/vendor/pygments-main/tests/examplefiles/swig_std_vector.i +225 -0
  352. data/vendor/pygments-main/tests/examplefiles/test.R +153 -0
  353. data/vendor/pygments-main/tests/examplefiles/test.adb +211 -0
  354. data/vendor/pygments-main/tests/examplefiles/test.agda +102 -0
  355. data/vendor/pygments-main/tests/examplefiles/test.asy +131 -0
  356. data/vendor/pygments-main/tests/examplefiles/test.awk +121 -0
  357. data/vendor/pygments-main/tests/examplefiles/test.bas +29 -0
  358. data/vendor/pygments-main/tests/examplefiles/test.bb +95 -0
  359. data/vendor/pygments-main/tests/examplefiles/test.bmx +145 -0
  360. data/vendor/pygments-main/tests/examplefiles/test.boo +39 -0
  361. data/vendor/pygments-main/tests/examplefiles/test.bro +250 -0
  362. data/vendor/pygments-main/tests/examplefiles/test.cs +374 -0
  363. data/vendor/pygments-main/tests/examplefiles/test.css +54 -0
  364. data/vendor/pygments-main/tests/examplefiles/test.cu +36 -0
  365. data/vendor/pygments-main/tests/examplefiles/test.d +135 -0
  366. data/vendor/pygments-main/tests/examplefiles/test.dart +23 -0
  367. data/vendor/pygments-main/tests/examplefiles/test.dtd +89 -0
  368. data/vendor/pygments-main/tests/examplefiles/test.ebnf +31 -0
  369. data/vendor/pygments-main/tests/examplefiles/test.ec +605 -0
  370. data/vendor/pygments-main/tests/examplefiles/test.ecl +58 -0
  371. data/vendor/pygments-main/tests/examplefiles/test.eh +315 -0
  372. data/vendor/pygments-main/tests/examplefiles/test.erl +169 -0
  373. data/vendor/pygments-main/tests/examplefiles/test.evoque +33 -0
  374. data/vendor/pygments-main/tests/examplefiles/test.fan +818 -0
  375. data/vendor/pygments-main/tests/examplefiles/test.flx +57 -0
  376. data/vendor/pygments-main/tests/examplefiles/test.gdc +13 -0
  377. data/vendor/pygments-main/tests/examplefiles/test.groovy +97 -0
  378. data/vendor/pygments-main/tests/examplefiles/test.html +339 -0
  379. data/vendor/pygments-main/tests/examplefiles/test.ini +10 -0
  380. data/vendor/pygments-main/tests/examplefiles/test.java +653 -0
  381. data/vendor/pygments-main/tests/examplefiles/test.jsp +24 -0
  382. data/vendor/pygments-main/tests/examplefiles/test.maql +45 -0
  383. data/vendor/pygments-main/tests/examplefiles/test.mod +374 -0
  384. data/vendor/pygments-main/tests/examplefiles/test.moo +51 -0
  385. data/vendor/pygments-main/tests/examplefiles/test.myt +166 -0
  386. data/vendor/pygments-main/tests/examplefiles/test.nim +93 -0
  387. data/vendor/pygments-main/tests/examplefiles/test.opa +10 -0
  388. data/vendor/pygments-main/tests/examplefiles/test.p6 +252 -0
  389. data/vendor/pygments-main/tests/examplefiles/test.pas +743 -0
  390. data/vendor/pygments-main/tests/examplefiles/test.php +505 -0
  391. data/vendor/pygments-main/tests/examplefiles/test.plot +333 -0
  392. data/vendor/pygments-main/tests/examplefiles/test.ps1 +108 -0
  393. data/vendor/pygments-main/tests/examplefiles/test.pypylog +1839 -0
  394. data/vendor/pygments-main/tests/examplefiles/test.r3 +94 -0
  395. data/vendor/pygments-main/tests/examplefiles/test.rb +177 -0
  396. data/vendor/pygments-main/tests/examplefiles/test.rhtml +43 -0
  397. data/vendor/pygments-main/tests/examplefiles/test.scaml +8 -0
  398. data/vendor/pygments-main/tests/examplefiles/test.ssp +12 -0
  399. data/vendor/pygments-main/tests/examplefiles/test.tcsh +830 -0
  400. data/vendor/pygments-main/tests/examplefiles/test.vb +407 -0
  401. data/vendor/pygments-main/tests/examplefiles/test.vhdl +161 -0
  402. data/vendor/pygments-main/tests/examplefiles/test.xqy +138 -0
  403. data/vendor/pygments-main/tests/examplefiles/test.xsl +23 -0
  404. data/vendor/pygments-main/tests/examplefiles/test2.pypylog +120 -0
  405. data/vendor/pygments-main/tests/examplefiles/truncated.pytb +15 -0
  406. data/vendor/pygments-main/tests/examplefiles/type.lisp +1218 -0
  407. data/vendor/pygments-main/tests/examplefiles/underscore.coffee +603 -0
  408. data/vendor/pygments-main/tests/examplefiles/unicode.applescript +5 -0
  409. data/vendor/pygments-main/tests/examplefiles/unicodedoc.py +11 -0
  410. data/vendor/pygments-main/tests/examplefiles/unix-io.lid +37 -0
  411. data/vendor/pygments-main/tests/examplefiles/webkit-transition.css +3 -0
  412. data/vendor/pygments-main/tests/examplefiles/while.pov +13 -0
  413. data/vendor/pygments-main/tests/examplefiles/wiki.factor +384 -0
  414. data/vendor/pygments-main/tests/examplefiles/xml_example +1897 -0
  415. data/vendor/pygments-main/tests/examplefiles/zmlrpc.f90 +798 -0
  416. data/vendor/pygments-main/tests/old_run.py +138 -0
  417. data/vendor/pygments-main/tests/run.py +49 -0
  418. data/vendor/pygments-main/tests/support.py +15 -0
  419. data/vendor/pygments-main/tests/support/tags +36 -0
  420. data/vendor/pygments-main/tests/test_basic_api.py +295 -0
  421. data/vendor/pygments-main/tests/test_clexer.py +31 -0
  422. data/vendor/pygments-main/tests/test_cmdline.py +105 -0
  423. data/vendor/pygments-main/tests/test_examplefiles.py +99 -0
  424. data/vendor/pygments-main/tests/test_html_formatter.py +178 -0
  425. data/vendor/pygments-main/tests/test_latex_formatter.py +55 -0
  426. data/vendor/pygments-main/tests/test_lexers_other.py +68 -0
  427. data/vendor/pygments-main/tests/test_perllexer.py +137 -0
  428. data/vendor/pygments-main/tests/test_regexlexer.py +47 -0
  429. data/vendor/pygments-main/tests/test_token.py +46 -0
  430. data/vendor/pygments-main/tests/test_using_api.py +40 -0
  431. data/vendor/pygments-main/tests/test_util.py +135 -0
  432. data/vendor/simplejson/.gitignore +10 -0
  433. data/vendor/simplejson/.travis.yml +5 -0
  434. data/vendor/simplejson/CHANGES.txt +291 -0
  435. data/vendor/simplejson/LICENSE.txt +19 -0
  436. data/vendor/simplejson/MANIFEST.in +5 -0
  437. data/vendor/simplejson/README.rst +19 -0
  438. data/vendor/simplejson/conf.py +179 -0
  439. data/vendor/simplejson/index.rst +628 -0
  440. data/vendor/simplejson/scripts/make_docs.py +18 -0
  441. data/vendor/simplejson/setup.py +104 -0
  442. data/vendor/simplejson/simplejson/__init__.py +510 -0
  443. data/vendor/simplejson/simplejson/_speedups.c +2745 -0
  444. data/vendor/simplejson/simplejson/decoder.py +425 -0
  445. data/vendor/simplejson/simplejson/encoder.py +567 -0
  446. data/vendor/simplejson/simplejson/ordered_dict.py +119 -0
  447. data/vendor/simplejson/simplejson/scanner.py +77 -0
  448. data/vendor/simplejson/simplejson/tests/__init__.py +67 -0
  449. data/vendor/simplejson/simplejson/tests/test_bigint_as_string.py +55 -0
  450. data/vendor/simplejson/simplejson/tests/test_check_circular.py +30 -0
  451. data/vendor/simplejson/simplejson/tests/test_decimal.py +66 -0
  452. data/vendor/simplejson/simplejson/tests/test_decode.py +83 -0
  453. data/vendor/simplejson/simplejson/tests/test_default.py +9 -0
  454. data/vendor/simplejson/simplejson/tests/test_dump.py +67 -0
  455. data/vendor/simplejson/simplejson/tests/test_encode_basestring_ascii.py +46 -0
  456. data/vendor/simplejson/simplejson/tests/test_encode_for_html.py +32 -0
  457. data/vendor/simplejson/simplejson/tests/test_errors.py +34 -0
  458. data/vendor/simplejson/simplejson/tests/test_fail.py +91 -0
  459. data/vendor/simplejson/simplejson/tests/test_float.py +19 -0
  460. data/vendor/simplejson/simplejson/tests/test_indent.py +86 -0
  461. data/vendor/simplejson/simplejson/tests/test_item_sort_key.py +20 -0
  462. data/vendor/simplejson/simplejson/tests/test_namedtuple.py +121 -0
  463. data/vendor/simplejson/simplejson/tests/test_pass1.py +76 -0
  464. data/vendor/simplejson/simplejson/tests/test_pass2.py +14 -0
  465. data/vendor/simplejson/simplejson/tests/test_pass3.py +20 -0
  466. data/vendor/simplejson/simplejson/tests/test_recursion.py +67 -0
  467. data/vendor/simplejson/simplejson/tests/test_scanstring.py +117 -0
  468. data/vendor/simplejson/simplejson/tests/test_separators.py +42 -0
  469. data/vendor/simplejson/simplejson/tests/test_speedups.py +20 -0
  470. data/vendor/simplejson/simplejson/tests/test_tuple.py +49 -0
  471. data/vendor/simplejson/simplejson/tests/test_unicode.py +109 -0
  472. data/vendor/simplejson/simplejson/tool.py +39 -0
  473. metadata +557 -0
@@ -0,0 +1,1131 @@
1
+ # Generated automatically from Makefile.pre by makesetup.
2
+ # Top-level Makefile for Python
3
+ #
4
+ # As distributed, this file is called Makefile.pre.in; it is processed
5
+ # into the real Makefile by running the script ./configure, which
6
+ # replaces things like @spam@ with values appropriate for your system.
7
+ # This means that if you edit Makefile, your changes get lost the next
8
+ # time you run the configure script. Ideally, you can do:
9
+ #
10
+ # ./configure
11
+ # make
12
+ # make test
13
+ # make install
14
+ #
15
+ # If you have a previous version of Python installed that you don't
16
+ # want to overwrite, you can use "make altinstall" instead of "make
17
+ # install". Refer to the "Installing" section in the README file for
18
+ # additional details.
19
+ #
20
+ # See also the section "Build instructions" in the README file.
21
+
22
+ # === Variables set by makesetup ===
23
+
24
+ MODOBJS= Modules/threadmodule.o Modules/signalmodule.o Modules/posixmodule.o Modules/errnomodule.o Modules/pwdmodule.o Modules/_sre.o Modules/_codecsmodule.o Modules/zipimport.o Modules/symtablemodule.o Modules/xxsubtype.o
25
+ MODLIBS= $(LOCALMODLIBS) $(BASEMODLIBS)
26
+
27
+ # === Variables set by configure
28
+ VERSION= 2.6
29
+ srcdir= .
30
+
31
+
32
+ CC= gcc -pthread
33
+ CXX= g++ -pthread
34
+ MAINCC= $(CC)
35
+ LINKCC= $(PURIFY) $(MAINCC)
36
+ AR= ar
37
+ RANLIB= ranlib
38
+ SVNVERSION= svnversion $(srcdir)
39
+
40
+ # Shell used by make (some versions default to the login shell, which is bad)
41
+ SHELL= /bin/sh
42
+
43
+ # Use this to make a link between python$(VERSION) and python in $(BINDIR)
44
+ LN= ln
45
+
46
+ # Portable install script (configure doesn't always guess right)
47
+ INSTALL= /usr/bin/install -c
48
+ INSTALL_PROGRAM=${INSTALL}
49
+ INSTALL_SCRIPT= ${INSTALL}
50
+ INSTALL_DATA= ${INSTALL} -m 644
51
+ # Shared libraries must be installed with executable mode on some systems;
52
+ # rather than figuring out exactly which, we always give them executable mode.
53
+ # Also, making them read-only seems to be a good idea...
54
+ INSTALL_SHARED= ${INSTALL} -m 555
55
+
56
+ MAKESETUP= $(srcdir)/Modules/makesetup
57
+
58
+ # Compiler options
59
+ OPT= -g -Wall -Wstrict-prototypes
60
+ BASECFLAGS= -fno-strict-aliasing
61
+ CFLAGS= $(BASECFLAGS) $(OPT) $(EXTRA_CFLAGS)
62
+ # Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to
63
+ # be able to build extension modules using the directories specified in the
64
+ # environment variables
65
+ CPPFLAGS= -I. -I$(srcdir)/Include
66
+ LDFLAGS=
67
+ LDLAST=
68
+ SGI_ABI=
69
+ CCSHARED= -fPIC
70
+ LINKFORSHARED= -Xlinker -export-dynamic
71
+ # Extra C flags added for building the interpreter object files.
72
+ CFLAGSFORSHARED=
73
+ # C flags used for building the interpreter object files
74
+ PY_CFLAGS= $(CFLAGS) $(CPPFLAGS) $(CFLAGSFORSHARED) -DPy_BUILD_CORE
75
+
76
+
77
+ # Machine-dependent subdirectories
78
+ MACHDEP= linux2
79
+
80
+ # Install prefix for architecture-independent files
81
+ prefix= /usr/local
82
+
83
+ # Install prefix for architecture-dependent files
84
+ exec_prefix= ${prefix}
85
+
86
+ # Expanded directories
87
+ BINDIR= $(exec_prefix)/bin
88
+ LIBDIR= $(exec_prefix)/lib
89
+ MANDIR= ${prefix}/man
90
+ INCLUDEDIR= ${prefix}/include
91
+ CONFINCLUDEDIR= $(exec_prefix)/include
92
+ SCRIPTDIR= $(prefix)/lib
93
+
94
+ # Detailed destination directories
95
+ BINLIBDEST= $(LIBDIR)/python$(VERSION)
96
+ LIBDEST= $(SCRIPTDIR)/python$(VERSION)
97
+ INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
98
+ CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(VERSION)
99
+ LIBP= $(LIBDIR)/python$(VERSION)
100
+
101
+ # Symbols used for using shared libraries
102
+ SO= .so
103
+ LDSHARED= $(CC) -shared
104
+ BLDSHARED= $(CC) -shared
105
+ DESTSHARED= $(BINLIBDEST)/lib-dynload
106
+
107
+ # Executable suffix (.exe on Windows and Mac OS X)
108
+ EXE=
109
+ BUILDEXE=
110
+
111
+ # Short name and location for Mac OS X Python framework
112
+ UNIVERSALSDK=
113
+ PYTHONFRAMEWORK=
114
+ PYTHONFRAMEWORKDIR= no-framework
115
+ PYTHONFRAMEWORKPREFIX=
116
+ PYTHONFRAMEWORKINSTALLDIR=
117
+ # Deployment target selected during configure, to be checked
118
+ # by distutils. The export statement is needed to ensure that the
119
+ # deployment target is active during build.
120
+ MACOSX_DEPLOYMENT_TARGET=
121
+ #export MACOSX_DEPLOYMENT_TARGET
122
+
123
+ # Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
124
+ OTHER_LIBTOOL_OPT=
125
+
126
+ # Environment to run shared python without installed libraries
127
+ RUNSHARED=
128
+
129
+ # Modes for directories, executables and data files created by the
130
+ # install process. Default to user-only-writable for all file types.
131
+ DIRMODE= 755
132
+ EXEMODE= 755
133
+ FILEMODE= 644
134
+
135
+ # configure script arguments
136
+ CONFIG_ARGS= '--with-pydebug'
137
+
138
+
139
+ # Subdirectories with code
140
+ SRCDIRS= Parser Grammar Objects Python Modules Mac
141
+
142
+ # Other subdirectories
143
+ SUBDIRSTOO= Include Lib Misc Demo
144
+
145
+ # Files and directories to be distributed
146
+ CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
147
+ DISTFILES= README ChangeLog $(CONFIGFILES)
148
+ DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
149
+ DIST= $(DISTFILES) $(DISTDIRS)
150
+
151
+
152
+ LIBRARY= libpython$(VERSION).a
153
+ LDLIBRARY= libpython$(VERSION).a
154
+ BLDLIBRARY= $(LDLIBRARY)
155
+ DLLLIBRARY=
156
+ LDLIBRARYDIR=
157
+ INSTSONAME= $(LDLIBRARY)
158
+
159
+
160
+ LIBS= -lpthread -ldl -lutil
161
+ LIBM= -lm
162
+ LIBC=
163
+ SYSLIBS= $(LIBM) $(LIBC)
164
+ SHLIBS= $(LIBS)
165
+
166
+ THREADOBJ= Python/thread.o
167
+ DLINCLDIR= .
168
+ DYNLOADFILE= dynload_shlib.o
169
+ MACHDEP_OBJS=
170
+ UNICODE_OBJS= Objects/unicodeobject.o Objects/unicodectype.o
171
+
172
+ PYTHON= python$(EXE)
173
+ BUILDPYTHON= python$(BUILDEXE)
174
+
175
+ # === Definitions added by makesetup ===
176
+
177
+ LOCALMODLIBS=
178
+ BASEMODLIBS=
179
+ GLHACK=-Dclear=__GLclear
180
+ PYTHONPATH=$(COREPYTHONPATH)
181
+ COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(EXTRAMACHDEPPATH)$(TKPATH)
182
+ TKPATH=:lib-tk
183
+ EXTRAMACHDEPPATH=
184
+ MACHDEPPATH=:plat-$(MACHDEP)
185
+ TESTPATH=
186
+ SITEPATH=
187
+ DESTPATH=
188
+ MACHDESTLIB=$(BINLIBDEST)
189
+ DESTLIB=$(LIBDEST)
190
+
191
+
192
+
193
+ ##########################################################################
194
+ # Modules
195
+ MODULE_OBJS= \
196
+ Modules/config.o \
197
+ Modules/getpath.o \
198
+ Modules/main.o \
199
+ Modules/gcmodule.o
200
+
201
+ # Used of signalmodule.o is not available
202
+ SIGNAL_OBJS=
203
+
204
+
205
+ ##########################################################################
206
+ # Grammar
207
+ GRAMMAR_H= $(srcdir)/Include/graminit.h
208
+ GRAMMAR_C= $(srcdir)/Python/graminit.c
209
+ GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
210
+
211
+
212
+ ##########################################################################
213
+ # Parser
214
+ PGEN= Parser/pgen$(EXE)
215
+
216
+ POBJS= \
217
+ Parser/acceler.o \
218
+ Parser/grammar1.o \
219
+ Parser/listnode.o \
220
+ Parser/node.o \
221
+ Parser/parser.o \
222
+ Parser/parsetok.o \
223
+ Parser/bitset.o \
224
+ Parser/metagrammar.o \
225
+ Parser/firstsets.o \
226
+ Parser/grammar.o \
227
+ Parser/pgen.o
228
+
229
+ PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
230
+
231
+ PGOBJS= \
232
+ Objects/obmalloc.o \
233
+ Python/mysnprintf.o \
234
+ Parser/tokenizer_pgen.o \
235
+ Parser/printgrammar.o \
236
+ Parser/pgenmain.o
237
+
238
+ PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
239
+
240
+ ##########################################################################
241
+ # AST
242
+ AST_H_DIR= $(srcdir)/Include
243
+ AST_H= $(AST_H_DIR)/Python-ast.h
244
+ AST_C_DIR= $(srcdir)/Python
245
+ AST_C= $(AST_C_DIR)/Python-ast.c
246
+ AST_ASDL= $(srcdir)/Parser/Python.asdl
247
+
248
+ ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
249
+ # XXX Note that a build now requires Python exist before the build starts
250
+ ASDLGEN= $(srcdir)/Parser/asdl_c.py
251
+
252
+ ##########################################################################
253
+ # Python
254
+ PYTHON_OBJS= \
255
+ Python/Python-ast.o \
256
+ Python/asdl.o \
257
+ Python/ast.o \
258
+ Python/bltinmodule.o \
259
+ Python/ceval.o \
260
+ Python/compile.o \
261
+ Python/codecs.o \
262
+ Python/errors.o \
263
+ Python/frozen.o \
264
+ Python/frozenmain.o \
265
+ Python/future.o \
266
+ Python/getargs.o \
267
+ Python/getcompiler.o \
268
+ Python/getcopyright.o \
269
+ Python/getmtime.o \
270
+ Python/getplatform.o \
271
+ Python/getversion.o \
272
+ Python/graminit.o \
273
+ Python/import.o \
274
+ Python/importdl.o \
275
+ Python/marshal.o \
276
+ Python/modsupport.o \
277
+ Python/mystrtoul.o \
278
+ Python/mysnprintf.o \
279
+ Python/peephole.o \
280
+ Python/pyarena.o \
281
+ Python/pyfpe.o \
282
+ Python/pystate.o \
283
+ Python/pythonrun.o \
284
+ Python/structmember.o \
285
+ Python/symtable.o \
286
+ Python/sysmodule.o \
287
+ Python/traceback.o \
288
+ Python/getopt.o \
289
+ Python/pystrtod.o \
290
+ Python/$(DYNLOADFILE) \
291
+ $(MACHDEP_OBJS) \
292
+ $(THREADOBJ)
293
+
294
+
295
+ ##########################################################################
296
+ # Objects
297
+ OBJECT_OBJS= \
298
+ Objects/abstract.o \
299
+ Objects/boolobject.o \
300
+ Objects/bufferobject.o \
301
+ Objects/cellobject.o \
302
+ Objects/classobject.o \
303
+ Objects/cobject.o \
304
+ Objects/codeobject.o \
305
+ Objects/complexobject.o \
306
+ Objects/descrobject.o \
307
+ Objects/enumobject.o \
308
+ Objects/exceptions.o \
309
+ Objects/genobject.o \
310
+ Objects/fileobject.o \
311
+ Objects/floatobject.o \
312
+ Objects/frameobject.o \
313
+ Objects/funcobject.o \
314
+ Objects/intobject.o \
315
+ Objects/iterobject.o \
316
+ Objects/listobject.o \
317
+ Objects/longobject.o \
318
+ Objects/dictobject.o \
319
+ Objects/methodobject.o \
320
+ Objects/moduleobject.o \
321
+ Objects/object.o \
322
+ Objects/obmalloc.o \
323
+ Objects/rangeobject.o \
324
+ Objects/setobject.o \
325
+ Objects/sliceobject.o \
326
+ Objects/stringobject.o \
327
+ Objects/structseq.o \
328
+ Objects/tupleobject.o \
329
+ Objects/typeobject.o \
330
+ Objects/weakrefobject.o \
331
+ $(UNICODE_OBJS)
332
+
333
+
334
+ ##########################################################################
335
+ # objects that get linked into the Python library
336
+ LIBRARY_OBJS= \
337
+ Modules/_typesmodule.o \
338
+ Modules/getbuildinfo.o \
339
+ $(PARSER_OBJS) \
340
+ $(OBJECT_OBJS) \
341
+ $(PYTHON_OBJS) \
342
+ $(MODULE_OBJS) \
343
+ $(SIGNAL_OBJS) \
344
+ $(MODOBJS)
345
+
346
+ #########################################################################
347
+ # Rules
348
+
349
+ # Default target
350
+ all: $(BUILDPYTHON) oldsharedmods sharedmods
351
+
352
+ # Build the interpreter
353
+ $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
354
+ $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
355
+ Modules/python.o \
356
+ $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
357
+
358
+ platform: $(BUILDPYTHON)
359
+ $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]' >platform
360
+
361
+
362
+ # Build the shared modules
363
+ sharedmods: $(BUILDPYTHON)
364
+ @case $$MAKEFLAGS in \
365
+ *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
366
+ *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
367
+ esac
368
+
369
+ # Build static library
370
+ # avoid long command lines, same as LIBRARY_OBJS
371
+ $(LIBRARY): $(LIBRARY_OBJS)
372
+ -rm -f $@
373
+ $(AR) cr $@ Modules/getbuildinfo.o
374
+ $(AR) cr $@ Modules/_typesmodule.o
375
+ $(AR) cr $@ $(PARSER_OBJS)
376
+ $(AR) cr $@ $(OBJECT_OBJS)
377
+ $(AR) cr $@ $(PYTHON_OBJS)
378
+ $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
379
+ $(AR) cr $@ $(MODOBJS)
380
+ $(RANLIB) $@
381
+
382
+ libpython$(VERSION).so: $(LIBRARY_OBJS)
383
+ if test $(INSTSONAME) != $(LDLIBRARY); then \
384
+ $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
385
+ $(LN) -f $(INSTSONAME) $@; \
386
+ else\
387
+ $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
388
+ fi
389
+
390
+ libpython$(VERSION).sl: $(LIBRARY_OBJS)
391
+ $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM)
392
+
393
+ # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
394
+ # minimal framework (not including the Lib directory and such) in the current
395
+ # directory.
396
+ RESSRCDIR=$(srcdir)/Mac/Resources/framework
397
+ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
398
+ $(LIBRARY) \
399
+ $(RESSRCDIR)/Info.plist \
400
+ $(RESSRCDIR)/version.plist \
401
+ $(RESSRCDIR)/English.lproj/InfoPlist.strings
402
+ $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
403
+ if test "${UNIVERSALSDK}"; then \
404
+ $(CC) -o $(LDLIBRARY) -arch i386 -arch ppc -dynamiclib \
405
+ -isysroot "${UNIVERSALSDK}" \
406
+ -all_load $(LIBRARY) -Wl,-single_module \
407
+ -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python \
408
+ -compatibility_version $(VERSION) \
409
+ -current_version $(VERSION); \
410
+ else \
411
+ libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
412
+ ;\
413
+ fi
414
+ $(INSTALL) -d -m $(DIRMODE) \
415
+ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
416
+ $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
417
+ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
418
+ $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
419
+ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
420
+ $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
421
+ $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
422
+ $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
423
+ $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
424
+ $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
425
+ $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
426
+
427
+ # This rule builds the Cygwin Python DLL and import library if configured
428
+ # for a shared core library; otherwise, this rule is a noop.
429
+ $(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
430
+ if test -n "$(DLLLIBRARY)"; then \
431
+ $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
432
+ $(LIBS) $(MODLIBS) $(SYSLIBS); \
433
+ else true; \
434
+ fi
435
+
436
+
437
+ oldsharedmods: $(SHAREDMODS)
438
+
439
+
440
+ Makefile Modules/config.c: Makefile.pre \
441
+ $(srcdir)/Modules/config.c.in \
442
+ $(MAKESETUP) \
443
+ Modules/Setup.config \
444
+ Modules/Setup \
445
+ Modules/Setup.local
446
+ $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
447
+ -s Modules \
448
+ Modules/Setup.config \
449
+ Modules/Setup.local \
450
+ Modules/Setup
451
+ @mv config.c Modules
452
+ @echo "The Makefile was updated, you may need to re-run make."
453
+
454
+
455
+ Modules/Setup: $(srcdir)/Modules/Setup.dist
456
+ @if test -f Modules/Setup; then \
457
+ echo "-----------------------------------------------"; \
458
+ echo "Modules/Setup.dist is newer than Modules/Setup;"; \
459
+ echo "check to make sure you have all the updates you"; \
460
+ echo "need in your Modules/Setup file."; \
461
+ echo "Usually, copying Setup.dist to Setup will work."; \
462
+ echo "-----------------------------------------------"; \
463
+ fi
464
+
465
+ ############################################################################
466
+ # Special rules for object files
467
+
468
+ Modules/getbuildinfo.o: $(PARSER_OBJS) \
469
+ $(OBJECT_OBJS) \
470
+ $(PYTHON_OBJS) \
471
+ $(MODULE_OBJS) \
472
+ $(SIGNAL_OBJS) \
473
+ $(MODOBJS) \
474
+ $(srcdir)/Modules/getbuildinfo.c
475
+ $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
476
+
477
+ Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
478
+ $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
479
+ -DPREFIX='"$(prefix)"' \
480
+ -DEXEC_PREFIX='"$(exec_prefix)"' \
481
+ -DVERSION='"$(VERSION)"' \
482
+ -DVPATH='"$(VPATH)"' \
483
+ -o $@ $(srcdir)/Modules/getpath.c
484
+
485
+ Modules/python.o: $(srcdir)/Modules/python.c
486
+ $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
487
+
488
+
489
+ $(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
490
+ -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
491
+
492
+ $(PGEN): $(PGENOBJS)
493
+ $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
494
+
495
+ Parser/grammar.o: $(srcdir)/Parser/grammar.c \
496
+ $(srcdir)/Include/token.h \
497
+ $(srcdir)/Include/grammar.h
498
+ Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
499
+
500
+ Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
501
+
502
+ Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
503
+
504
+ $(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
505
+ $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
506
+
507
+ $(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
508
+ $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
509
+
510
+ Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
511
+
512
+ Python/getplatform.o: $(srcdir)/Python/getplatform.c
513
+ $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
514
+
515
+ Python/importdl.o: $(srcdir)/Python/importdl.c
516
+ $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
517
+
518
+ Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
519
+ $(srcdir)/Objects/unicodetype_db.h
520
+
521
+ ############################################################################
522
+ # Header files
523
+
524
+ PYTHON_HEADERS= \
525
+ Include/Python.h \
526
+ Include/Python-ast.h \
527
+ Include/asdl.h \
528
+ Include/abstract.h \
529
+ Include/boolobject.h \
530
+ Include/bufferobject.h \
531
+ Include/ceval.h \
532
+ Include/classobject.h \
533
+ Include/cobject.h \
534
+ Include/code.h \
535
+ Include/codecs.h \
536
+ Include/compile.h \
537
+ Include/complexobject.h \
538
+ Include/descrobject.h \
539
+ Include/dictobject.h \
540
+ Include/enumobject.h \
541
+ Include/genobject.h \
542
+ Include/fileobject.h \
543
+ Include/floatobject.h \
544
+ Include/funcobject.h \
545
+ Include/import.h \
546
+ Include/intobject.h \
547
+ Include/intrcheck.h \
548
+ Include/iterobject.h \
549
+ Include/listobject.h \
550
+ Include/longobject.h \
551
+ Include/methodobject.h \
552
+ Include/modsupport.h \
553
+ Include/moduleobject.h \
554
+ Include/object.h \
555
+ Include/objimpl.h \
556
+ Include/parsetok.h \
557
+ Include/patchlevel.h \
558
+ Include/pyarena.h \
559
+ Include/pydebug.h \
560
+ Include/pyerrors.h \
561
+ Include/pyfpe.h \
562
+ Include/pymem.h \
563
+ Include/pyport.h \
564
+ Include/pystate.h \
565
+ Include/pythonrun.h \
566
+ Include/rangeobject.h \
567
+ Include/setobject.h \
568
+ Include/sliceobject.h \
569
+ Include/stringobject.h \
570
+ Include/structseq.h \
571
+ Include/structmember.h \
572
+ Include/symtable.h \
573
+ Include/sysmodule.h \
574
+ Include/traceback.h \
575
+ Include/tupleobject.h \
576
+ Include/unicodeobject.h \
577
+ Include/weakrefobject.h \
578
+ pyconfig.h
579
+
580
+ $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
581
+
582
+
583
+ ######################################################################
584
+
585
+ # Test the interpreter (twice, once without .pyc files, once with)
586
+ # In the past, we've had problems where bugs in the marshalling or
587
+ # elsewhere caused bytecode read from .pyc files to behave differently
588
+ # than bytecode generated directly from a .py source file. Sometimes
589
+ # the bytecode read from a .pyc file had the bug, somtimes the directly
590
+ # generated bytecode. This is sometimes a very shy bug needing a lot of
591
+ # sample data.
592
+
593
+ TESTOPTS= -l $(EXTRATESTOPTS)
594
+ TESTPROG= $(srcdir)/Lib/test/regrtest.py
595
+ TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
596
+ test: all platform
597
+ -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
598
+ -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
599
+ $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
600
+
601
+ testall: all platform
602
+ -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
603
+ -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
604
+ $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
605
+
606
+ # Run the unitests for both architectures in a Universal build on OSX
607
+ # Must be run on an Intel box.
608
+ testuniversal: all platform
609
+ if [ `arch` != 'i386' ];then \
610
+ echo "This can only be used on OSX/i386" ;\
611
+ exit 1 ;\
612
+ fi
613
+ -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
614
+ -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
615
+ $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
616
+ $(RUNSHARED) /usr/libexec/oah/translate ./$(BUILDPYTHON) -E -tt $(TESTPROG) $(TESTOPTS) -uall
617
+
618
+
619
+ # Like testall, but with a single pass only
620
+ buildbottest: all platform
621
+ $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
622
+
623
+ QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
624
+ test_unicodedata test_re test_sre test_select test_poll \
625
+ test_linuxaudiodev test_struct test_sunaudiodev test_zlib
626
+ quicktest: all platform
627
+ -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
628
+ -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
629
+ $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
630
+
631
+ MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
632
+ test_longexp
633
+ memtest: all platform
634
+ -rm -f $(srcdir)/Lib/test/*.py[co]
635
+ -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
636
+ $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
637
+
638
+ # Install everything
639
+ install: altinstall bininstall maninstall
640
+
641
+ # Install almost everything without disturbing previous versions
642
+ altinstall: altbininstall libinstall inclinstall libainstall \
643
+ sharedinstall oldsharedinstall
644
+
645
+ # Install shared libraries enabled by Setup
646
+ DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
647
+
648
+ oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
649
+ @for i in X $(SHAREDMODS); do \
650
+ if test $$i != X; then \
651
+ echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
652
+ $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
653
+ fi; \
654
+ done
655
+
656
+ $(DESTSHARED):
657
+ @for i in $(DESTDIRS); \
658
+ do \
659
+ if test ! -d $(DESTDIR)$$i; then \
660
+ echo "Creating directory $$i"; \
661
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
662
+ else true; \
663
+ fi; \
664
+ done
665
+
666
+
667
+ # Install the interpreter (by creating a hard link to python$(VERSION))
668
+ bininstall: altbininstall
669
+ -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
670
+ then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
671
+ else true; \
672
+ fi
673
+ (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
674
+ (cd $(DESTDIR)$(BINDIR); $(LN) -sf python$(VERSION)-config python-config)
675
+
676
+ # Install the interpreter with $(VERSION) affixed
677
+ # This goes into $(exec_prefix)
678
+ altbininstall: $(BUILDPYTHON)
679
+ @for i in $(BINDIR) $(LIBDIR); \
680
+ do \
681
+ if test ! -d $(DESTDIR)$$i; then \
682
+ echo "Creating directory $$i"; \
683
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
684
+ else true; \
685
+ fi; \
686
+ done
687
+ $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
688
+ if test -f libpython$(VERSION)$(SO); then \
689
+ if test "$(SO)" = .dll; then \
690
+ $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
691
+ else \
692
+ $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
693
+ if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
694
+ (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
695
+ fi \
696
+ fi; \
697
+ else true; \
698
+ fi
699
+
700
+ # Install the manual page
701
+ maninstall:
702
+ @for i in $(MANDIR) $(MANDIR)/man1; \
703
+ do \
704
+ if test ! -d $(DESTDIR)$$i; then \
705
+ echo "Creating directory $$i"; \
706
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
707
+ else true; \
708
+ fi; \
709
+ done
710
+ $(INSTALL_DATA) $(srcdir)/Misc/python.man \
711
+ $(DESTDIR)$(MANDIR)/man1/python.1
712
+
713
+ # Install the library
714
+ PLATDIR= plat-$(MACHDEP)
715
+ EXTRAPLATDIR=
716
+ EXTRAMACHDEPPATH=
717
+ MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
718
+ XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
719
+ PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
720
+ plat-mac/lib-scriptpackages/_builtinSuites \
721
+ plat-mac/lib-scriptpackages/CodeWarrior \
722
+ plat-mac/lib-scriptpackages/Explorer \
723
+ plat-mac/lib-scriptpackages/Finder \
724
+ plat-mac/lib-scriptpackages/Netscape \
725
+ plat-mac/lib-scriptpackages/StdSuites \
726
+ plat-mac/lib-scriptpackages/SystemEvents \
727
+ plat-mac/lib-scriptpackages/Terminal
728
+ PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
729
+ LIBSUBDIRS= lib-tk site-packages test test/output test/data \
730
+ test/decimaltestdata \
731
+ encodings compiler hotshot \
732
+ email email/mime email/test email/test/data \
733
+ sqlite3 sqlite3/test \
734
+ logging bsddb bsddb/test csv wsgiref \
735
+ ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
736
+ distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
737
+ setuptools setuptools/command setuptools/tests setuptools.egg-info \
738
+ curses $(MACHDEPS)
739
+ libinstall: $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR)
740
+ @for i in $(SCRIPTDIR) $(LIBDEST); \
741
+ do \
742
+ if test ! -d $(DESTDIR)$$i; then \
743
+ echo "Creating directory $$i"; \
744
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
745
+ else true; \
746
+ fi; \
747
+ done
748
+ @for d in $(LIBSUBDIRS); \
749
+ do \
750
+ a=$(srcdir)/Lib/$$d; \
751
+ if test ! -d $$a; then continue; else true; fi; \
752
+ b=$(LIBDEST)/$$d; \
753
+ if test ! -d $(DESTDIR)$$b; then \
754
+ echo "Creating directory $$b"; \
755
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
756
+ else true; \
757
+ fi; \
758
+ done
759
+ @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
760
+ do \
761
+ if test -x $$i; then \
762
+ $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
763
+ echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
764
+ else \
765
+ $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
766
+ echo $(INSTALL_DATA) $$i $(LIBDEST); \
767
+ fi; \
768
+ done
769
+ @for d in $(LIBSUBDIRS); \
770
+ do \
771
+ a=$(srcdir)/Lib/$$d; \
772
+ if test ! -d $$a; then continue; else true; fi; \
773
+ if test `ls $$a | wc -l` -lt 1; then continue; fi; \
774
+ b=$(LIBDEST)/$$d; \
775
+ for i in $$a/*; \
776
+ do \
777
+ case $$i in \
778
+ *CVS) ;; \
779
+ *.py[co]) ;; \
780
+ *.orig) ;; \
781
+ *~) ;; \
782
+ *) \
783
+ if test -d $$i; then continue; fi; \
784
+ if test -x $$i; then \
785
+ echo $(INSTALL_SCRIPT) $$i $$b; \
786
+ $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
787
+ else \
788
+ echo $(INSTALL_DATA) $$i $$b; \
789
+ $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
790
+ fi;; \
791
+ esac; \
792
+ done; \
793
+ done
794
+ $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
795
+ PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
796
+ ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
797
+ -d $(LIBDEST) -f \
798
+ -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
799
+ PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
800
+ ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
801
+ -d $(LIBDEST) -f \
802
+ -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
803
+ -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
804
+ ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
805
+ -d $(LIBDEST)/site-packages -f \
806
+ -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
807
+ -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
808
+ ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
809
+ -d $(LIBDEST)/site-packages -f \
810
+ -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
811
+
812
+ # Create the PLATDIR source directory, if one wasn't distributed..
813
+ $(srcdir)/Lib/$(PLATDIR):
814
+ mkdir $(srcdir)/Lib/$(PLATDIR)
815
+ cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
816
+ export PATH; PATH="`pwd`:$$PATH"; \
817
+ export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
818
+ export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
819
+ export EXE; EXE="$(BUILDEXE)"; \
820
+ cd $(srcdir)/Lib/$(PLATDIR); ./regen
821
+
822
+ # Install the include files
823
+ INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
824
+ inclinstall:
825
+ @for i in $(INCLDIRSTOMAKE); \
826
+ do \
827
+ if test ! -d $(DESTDIR)$$i; then \
828
+ echo "Creating directory $$i"; \
829
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
830
+ else true; \
831
+ fi; \
832
+ done
833
+ @for i in $(srcdir)/Include/*.h; \
834
+ do \
835
+ echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
836
+ $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
837
+ done
838
+ $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
839
+
840
+ # Install the library and miscellaneous stuff needed for extending/embedding
841
+ # This goes into $(exec_prefix)
842
+ LIBPL= $(LIBP)/config
843
+ libainstall: all
844
+ @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
845
+ do \
846
+ if test ! -d $(DESTDIR)$$i; then \
847
+ echo "Creating directory $$i"; \
848
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
849
+ else true; \
850
+ fi; \
851
+ done
852
+ @if test -d $(LIBRARY); then :; else \
853
+ if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
854
+ if test "$(SO)" = .dll; then \
855
+ $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
856
+ else \
857
+ $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
858
+ $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
859
+ fi; \
860
+ else \
861
+ echo Skip install of $(LIBRARY) - use make frameworkinstall; \
862
+ fi; \
863
+ fi
864
+ $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
865
+ $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
866
+ $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
867
+ $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
868
+ $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
869
+ $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
870
+ $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
871
+ $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
872
+ $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
873
+ # Substitution happens here, as the completely-expanded BINDIR
874
+ # is not available in configure
875
+ sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config
876
+ $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config
877
+ rm python-config
878
+ @if [ -s Modules/python.exp -a \
879
+ "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
880
+ echo; echo "Installing support files for building shared extension modules on AIX:"; \
881
+ $(INSTALL_DATA) Modules/python.exp \
882
+ $(DESTDIR)$(LIBPL)/python.exp; \
883
+ echo; echo "$(LIBPL)/python.exp"; \
884
+ $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
885
+ $(DESTDIR)$(LIBPL)/makexp_aix; \
886
+ echo "$(LIBPL)/makexp_aix"; \
887
+ $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
888
+ $(DESTDIR)$(LIBPL)/ld_so_aix; \
889
+ echo "$(LIBPL)/ld_so_aix"; \
890
+ echo; echo "See Misc/AIX-NOTES for details."; \
891
+ else true; \
892
+ fi
893
+ @case "$(MACHDEP)" in beos*) \
894
+ echo; echo "Installing support files for building shared extension modules on BeOS:"; \
895
+ $(INSTALL_DATA) Misc/BeOS-NOTES $(DESTDIR)$(LIBPL)/README; \
896
+ echo; echo "$(LIBPL)/README"; \
897
+ $(INSTALL_SCRIPT) Modules/ar_beos $(DESTDIR)$(LIBPL)/ar_beos; \
898
+ echo "$(LIBPL)/ar_beos"; \
899
+ $(INSTALL_SCRIPT) Modules/ld_so_beos $(DESTDIR)$(LIBPL)/ld_so_beos; \
900
+ echo "$(LIBPL)/ld_so_beos"; \
901
+ echo; echo "See Misc/BeOS-NOTES for details."; \
902
+ ;; \
903
+ esac
904
+
905
+ # Install the dynamically loadable modules
906
+ # This goes into $(exec_prefix)
907
+ sharedinstall:
908
+ $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
909
+ --prefix=$(prefix) \
910
+ --install-scripts=$(BINDIR) \
911
+ --install-platlib=$(DESTSHARED) \
912
+ --root=/$(DESTDIR)
913
+
914
+ # Here are a couple of targets for MacOSX again, to install a full
915
+ # framework-based Python. frameworkinstall installs everything, the
916
+ # subtargets install specific parts. Much of the actual work is offloaded to
917
+ # the Makefile in Mac
918
+ #
919
+ #
920
+ # This target is here for backward compatiblity, previous versions of Python
921
+ # hadn't integrated framework installation in the normal install process.
922
+ frameworkinstall: install
923
+
924
+ # On install, we re-make the framework
925
+ # structure in the install location, /Library/Frameworks/ or the argument to
926
+ # --enable-framework. If --enable-framework has been specified then we have
927
+ # automatically set prefix to the location deep down in the framework, so we
928
+ # only have to cater for the structural bits of the framework.
929
+
930
+ frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
931
+
932
+ frameworkinstallstructure: $(LDLIBRARY)
933
+ @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
934
+ echo Not configured with --enable-framework; \
935
+ exit 1; \
936
+ else true; \
937
+ fi
938
+ @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
939
+ if test ! -d $(DESTDIR)$$i; then \
940
+ echo "Creating directory $(DESTDIR)$$i"; \
941
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
942
+ else true; \
943
+ fi; \
944
+ done
945
+ $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
946
+ $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
947
+ $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
948
+ $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
949
+ $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
950
+ $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
951
+ $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
952
+ $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
953
+ $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
954
+ $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
955
+
956
+ # This installs Mac/Lib into the framework
957
+ # Install a number of symlinks to keep software that expects a normal unix
958
+ # install (which includes python-config) happy.
959
+ frameworkinstallmaclib:
960
+ ln -fs "../../../Python" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
961
+ cd Mac && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)"
962
+
963
+ # This installs the IDE, the Launcher and other apps into /Applications
964
+ frameworkinstallapps:
965
+ cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
966
+
967
+ # This install the unix python and pythonw tools in /usr/local/bin
968
+ frameworkinstallunixtools:
969
+ cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
970
+
971
+ frameworkaltinstallunixtools:
972
+ cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
973
+
974
+ # This installs the Demos and Tools into the applications directory.
975
+ # It is not part of a normal frameworkinstall
976
+ frameworkinstallextras:
977
+ cd Mac && Make installextras DESTDIR="$(DESTDIR)"
978
+
979
+ # This installs a few of the useful scripts in Tools/scripts
980
+ scriptsinstall:
981
+ SRCDIR=$(srcdir) $(RUNSHARED) \
982
+ ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
983
+ --prefix=$(prefix) \
984
+ --install-scripts=$(BINDIR) \
985
+ --root=/$(DESTDIR)
986
+
987
+ # Build the toplevel Makefile
988
+ Makefile.pre: Makefile.pre.in config.status
989
+ CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
990
+ $(MAKE) -f Makefile.pre Makefile
991
+
992
+ # Run the configure script.
993
+ config.status: $(srcdir)/configure
994
+ $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
995
+
996
+ .PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
997
+
998
+ # Some make's put the object file in the current directory
999
+ .c.o:
1000
+ $(CC) -c $(PY_CFLAGS) -o $@ $<
1001
+
1002
+ # Run reindent on the library
1003
+ reindent:
1004
+ ./python$(EXEEXT) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
1005
+
1006
+ # Rerun configure with the same options as it was run last time,
1007
+ # provided the config.status script exists
1008
+ recheck:
1009
+ $(SHELL) config.status --recheck
1010
+ $(SHELL) config.status
1011
+
1012
+ # Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
1013
+ autoconf:
1014
+ (cd $(srcdir); autoconf)
1015
+ (cd $(srcdir); autoheader)
1016
+
1017
+ # Create a tags file for vi
1018
+ tags::
1019
+ cd $(srcdir); \
1020
+ ctags -w -t Include/*.h; \
1021
+ for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1022
+ done; \
1023
+ sort -o tags tags
1024
+
1025
+ # Create a tags file for GNU Emacs
1026
+ TAGS::
1027
+ cd $(srcdir); \
1028
+ etags Include/*.h; \
1029
+ for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1030
+
1031
+ # Sanitation targets -- clean leaves libraries, executables and tags
1032
+ # files, which clobber removes those as well
1033
+ pycremoval:
1034
+ find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
1035
+
1036
+ clean: pycremoval
1037
+ find . -name '*.o' -exec rm -f {} ';'
1038
+ find . -name '*.s[ol]' -exec rm -f {} ';'
1039
+ find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1040
+ find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
1041
+
1042
+ clobber: clean
1043
+ -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
1044
+ tags TAGS \
1045
+ config.cache config.log pyconfig.h Modules/config.c
1046
+ -rm -rf build platform
1047
+ -rm -rf $(PYTHONFRAMEWORKDIR)
1048
+
1049
+ # Make things extra clean, before making a distribution:
1050
+ # remove all generated files, even Makefile[.pre]
1051
+ # Keep configure and Python-ast.[ch], it's possible they can't be generated
1052
+ distclean: clobber
1053
+ -rm -f core Makefile Makefile.pre config.status \
1054
+ Modules/Setup Modules/Setup.local Modules/Setup.config
1055
+ find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1056
+ -o -name '[@,#]*' -o -name '*.old' \
1057
+ -o -name '*.orig' -o -name '*.rej' \
1058
+ -o -name '*.bak' ')' \
1059
+ -exec rm -f {} ';'
1060
+
1061
+ # Check for smelly exported symbols (not starting with Py/_Py)
1062
+ smelly: all
1063
+ nm -p $(LIBRARY) | \
1064
+ sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1065
+
1066
+ # Find files with funny names
1067
+ funny:
1068
+ find $(DISTDIRS) -type d \
1069
+ -o -name '*.[chs]' \
1070
+ -o -name '*.py' \
1071
+ -o -name '*.doc' \
1072
+ -o -name '*.sty' \
1073
+ -o -name '*.bib' \
1074
+ -o -name '*.dat' \
1075
+ -o -name '*.el' \
1076
+ -o -name '*.fd' \
1077
+ -o -name '*.in' \
1078
+ -o -name '*.tex' \
1079
+ -o -name '*,[vpt]' \
1080
+ -o -name 'Setup' \
1081
+ -o -name 'Setup.*' \
1082
+ -o -name README \
1083
+ -o -name Makefile \
1084
+ -o -name ChangeLog \
1085
+ -o -name Repository \
1086
+ -o -name Root \
1087
+ -o -name Entries \
1088
+ -o -name Tag \
1089
+ -o -name tags \
1090
+ -o -name TAGS \
1091
+ -o -name .cvsignore \
1092
+ -o -name MANIFEST \
1093
+ -o -print
1094
+
1095
+ # Dependencies
1096
+
1097
+ Python/thread.o: $(srcdir)/Python/thread_atheos.h $(srcdir)/Python/thread_beos.h $(srcdir)/Python/thread_cthread.h $(srcdir)/Python/thread_foobar.h $(srcdir)/Python/thread_lwp.h $(srcdir)/Python/thread_nt.h $(srcdir)/Python/thread_os2.h $(srcdir)/Python/thread_pth.h $(srcdir)/Python/thread_pthread.h $(srcdir)/Python/thread_sgi.h $(srcdir)/Python/thread_solaris.h $(srcdir)/Python/thread_wince.h
1098
+
1099
+ # Declare targets that aren't real files
1100
+ .PHONY: all sharedmods oldsharedmods test quicktest memtest
1101
+ .PHONY: install altinstall oldsharedinstall bininstall altbininstall
1102
+ .PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1103
+ .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1104
+ .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
1105
+ .PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
1106
+ .PHONY: smelly funny
1107
+
1108
+ # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
1109
+
1110
+ # Rules appended by makedepend
1111
+
1112
+ Modules/threadmodule.o: $(srcdir)/Modules/threadmodule.c; $(CC) $(PY_CFLAGS) -c $(srcdir)/Modules/threadmodule.c -o Modules/threadmodule.o
1113
+ Modules/threadmodule$(SO): Modules/threadmodule.o; $(LDSHARED) Modules/threadmodule.o -o Modules/threadmodule$(SO)
1114
+ Modules/signalmodule.o: $(srcdir)/Modules/signalmodule.c; $(CC) $(PY_CFLAGS) -c $(srcdir)/Modules/signalmodule.c -o Modules/signalmodule.o
1115
+ Modules/signalmodule$(SO): Modules/signalmodule.o; $(LDSHARED) Modules/signalmodule.o -o Modules/signalmodule$(SO)
1116
+ Modules/posixmodule.o: $(srcdir)/Modules/posixmodule.c; $(CC) $(PY_CFLAGS) -c $(srcdir)/Modules/posixmodule.c -o Modules/posixmodule.o
1117
+ Modules/posixmodule$(SO): Modules/posixmodule.o; $(LDSHARED) Modules/posixmodule.o -o Modules/posixmodule$(SO)
1118
+ Modules/errnomodule.o: $(srcdir)/Modules/errnomodule.c; $(CC) $(PY_CFLAGS) -c $(srcdir)/Modules/errnomodule.c -o Modules/errnomodule.o
1119
+ Modules/errnomodule$(SO): Modules/errnomodule.o; $(LDSHARED) Modules/errnomodule.o -o Modules/errnomodule$(SO)
1120
+ Modules/pwdmodule.o: $(srcdir)/Modules/pwdmodule.c; $(CC) $(PY_CFLAGS) -c $(srcdir)/Modules/pwdmodule.c -o Modules/pwdmodule.o
1121
+ Modules/pwdmodule$(SO): Modules/pwdmodule.o; $(LDSHARED) Modules/pwdmodule.o -o Modules/pwdmodule$(SO)
1122
+ Modules/_sre.o: $(srcdir)/Modules/_sre.c; $(CC) $(PY_CFLAGS) -c $(srcdir)/Modules/_sre.c -o Modules/_sre.o
1123
+ Modules/_sre$(SO): Modules/_sre.o; $(LDSHARED) Modules/_sre.o -o Modules/_sre$(SO)
1124
+ Modules/_codecsmodule.o: $(srcdir)/Modules/_codecsmodule.c; $(CC) $(PY_CFLAGS) -c $(srcdir)/Modules/_codecsmodule.c -o Modules/_codecsmodule.o
1125
+ Modules/_codecsmodule$(SO): Modules/_codecsmodule.o; $(LDSHARED) Modules/_codecsmodule.o -o Modules/_codecsmodule$(SO)
1126
+ Modules/zipimport.o: $(srcdir)/Modules/zipimport.c; $(CC) $(PY_CFLAGS) -c $(srcdir)/Modules/zipimport.c -o Modules/zipimport.o
1127
+ Modules/zipimport$(SO): Modules/zipimport.o; $(LDSHARED) Modules/zipimport.o -o Modules/zipimport$(SO)
1128
+ Modules/symtablemodule.o: $(srcdir)/Modules/symtablemodule.c; $(CC) $(PY_CFLAGS) -c $(srcdir)/Modules/symtablemodule.c -o Modules/symtablemodule.o
1129
+ Modules/_symtablemodule$(SO): Modules/symtablemodule.o; $(LDSHARED) Modules/symtablemodule.o -o Modules/_symtablemodule$(SO)
1130
+ Modules/xxsubtype.o: $(srcdir)/Modules/xxsubtype.c; $(CC) $(PY_CFLAGS) -c $(srcdir)/Modules/xxsubtype.c -o Modules/xxsubtype.o
1131
+ Modules/xxsubtype$(SO): Modules/xxsubtype.o; $(LDSHARED) Modules/xxsubtype.o -o Modules/xxsubtype$(SO)