emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Slowness of org-agenda-redo in org 9.7 vs 9.6.7
@ 2024-01-19 10:35 dark.key8799
  2024-01-19 12:57 ` Ihor Radchenko
  0 siblings, 1 reply; 14+ messages in thread
From: dark.key8799 @ 2024-01-19 10:35 UTC (permalink / raw)
  To: emacs-orgmode

I've been running 9.7 for a few weeks and I've noticed a slowdown in `org-agenda-redo'. I finally ran some benchmarks.

I can reproduce it with a minimal org config (bare init.el with only straight.el and a short org config) with my full `org-agenda-files' (~450 files). In my regular conf, both are faster than the report below (I suppose because of gc collection parameters), about ~10s and ~1s respectively.

(use-package org
  ;:straight (:type built-in)
  :custom
  (org-agenda-inhibit-startup t)
  (org-agenda-dim-blocked-tasks nil)
  (org-agenda-window-setup 'current-window)
  (org-agenda-restore-windows-after-quit t)
  (org-agenda-show-future-repeats nil)
  (org-agenda-todo-ignore-scheduled 'all)
  (org-agenda-tags-todo-honor-ignore-options t)
  (org-agenda-tags-column 0)
  (org-tags-exclude-from-inheritance '("project"))
  (org-agenda-files
   '("~/Documents/Notes/" "~/Documents/Notes/org-roam/" "~/Documents/Notes/org-roam/daily/")))

Here's a truncated comparison of elp outputs
                                                              calls9_7  elapsed9_7    average9_7  calls9_6_7  elapsed9_6_7  average9_6_7  diff_calls  diff_elapsed
function                                                                                                                                                          
org-agenda-redo                                                      1   34.677843  3.467784e+01           1      6.764364  6.764364e+00           0     27.913479
org-agenda-run-series                                                1   34.672858  3.467286e+01           1      6.763294  6.763294e+00           0     27.909564
org-element-cache-map                                             5904   31.591816  5.350917e-03        5904      5.696144  9.647940e-04           0     25.895672
org-tags-view                                                        6   30.645603  5.107601e+00           6      5.897457  9.829095e-01           0     24.748146
org-scan-tags                                                     2952   30.300860  1.026452e-02        2952      5.590151  1.893683e-03           0     24.710709
org-agenda-get-day-entries                                        1476    3.594734  2.435457e-03        1476      0.606745  4.110738e-04           0      2.987989
org-agenda-list                                                      1    3.621574  3.621574e+00           1      0.665955  6.659550e-01           0      2.955619
org-element-lineage-map                                          38658    2.356579  6.095000e-05           0      0.000000  0.000000e+00       38658      2.356579
org-element--property                                           706448    1.981798  2.805000e-06           0      0.000000  0.000000e+00      706448      1.981798
org-agenda-get-scheduled                                          1476    1.947263  1.319284e-03        1476      0.241429  1.635697e-04           0      1.705834
org-entry-get-with-inheritance                                   37938    3.647018  9.613000e-05       37938      2.436293  6.421000e-05           0      1.210725
org-agenda-get-deadlines                                          1476    1.323156  8.964471e-04        1476      0.154018  1.043482e-04           0      1.169138
org-element-begin                                               570514    0.980263  1.718000e-06           0      0.000000  0.000000e+00      570514      0.980263
org-element-property-inherited                                   40114    0.881786  2.198000e-05           0      0.000000  0.000000e+00       40114      0.881786
org-element-type                                               2805984    0.888528  3.166000e-07      154150      0.054403  3.529000e-07     2651834      0.834125
org-element--cache-key                                          164988    0.789725  4.786000e-06           0      0.000000  0.000000e+00      164988      0.789725
org-element-parent                                              255728    0.771416  3.016000e-06           0      0.000000  0.000000e+00      255728      0.771416
org-element-at-point                                            238169    0.788185  3.309000e-06        8429      0.229212  2.719000e-05      229740      0.558973
org--property-local-values                                      116449    1.657522  1.423000e-05      115973      1.238066  1.067000e-05         476      0.419456
org-element--parse-to                                             9564    0.480723  5.026000e-05        9611      0.079269  8.247000e-06         -47      0.401454
org--get-local-tags                                              38172    0.242883  6.362000e-06         234      0.001800  7.692000e-06       37938      0.241083
org-element--cache-find                                           9540    0.272448  2.855000e-05        9587      0.053306  5.560000e-06         -47      0.219142
org-agenda-prepare                                                   9    0.298073  3.311922e-02           9      0.114234  1.269267e-02           0      0.183839
org-agenda-prepare-buffers                                           1    0.288492  2.884920e-01           1      0.108683  1.086830e-01           0      0.179809
org-set-regexps-and-options                                        492    0.181551  3.690060e-04         492      0.019952  4.055000e-05           0      0.161599
org-element-contents-end                                         87720    0.130603  1.488000e-06           0      0.000000  0.000000e+00       87720      0.130603
org-agenda-entry-get-agenda-timestamp                            37883    0.197997  5.226000e-06       37883      0.069473  1.833000e-06           0      0.128524
org-collect-keywords                                               492    0.126222  2.565487e-04         492      0.017828  3.623000e-05           0      0.108394
org--collect-keywords-1                                            492    0.124751  2.535589e-04         492      0.016960  3.447000e-05           0      0.107791
org-agenda-skip                                                    971    0.129958  1.338393e-04         971      0.027204  2.801000e-05           0      0.102754


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-19 10:35 Slowness of org-agenda-redo in org 9.7 vs 9.6.7 dark.key8799
@ 2024-01-19 12:57 ` Ihor Radchenko
  2024-01-19 13:49   ` dark.key8799
  0 siblings, 1 reply; 14+ messages in thread
From: Ihor Radchenko @ 2024-01-19 12:57 UTC (permalink / raw)
  To: dark.key8799; +Cc: emacs-orgmode

dark.key8799@151e.ai writes:

> I've been running 9.7 for a few weeks and I've noticed a slowdown in
> `org-agenda-redo'. I finally ran some benchmarks.

Thanks!

> I can reproduce it with a minimal org config (bare init.el with only
> straight.el and a short org config) with my full `org-agenda-files'
> (~450 files). In my regular conf, both are faster than the report
> below (I suppose because of gc collection parameters), about ~10s and
> ~1s respectively.
>
> Here's a truncated comparison of elp outputs

May you please redo the benchmarks using
1. M-x profiler-start <RET> cpu <RET>
2. Run agenda
3. M-x profiler-report
4. M-x profiler-report-write-profile <RET> profile.el <RET>
5. Share two saved profiles, repeating the above steps with newer and
   older Org mode.

ELP benchmarks on the whole Org mode are useless - they create huge
overheads on frequently called fast functions, completely messing up the
information.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-19 12:57 ` Ihor Radchenko
@ 2024-01-19 13:49   ` dark.key8799
  2024-01-19 14:00     ` Ihor Radchenko
  0 siblings, 1 reply; 14+ messages in thread
From: dark.key8799 @ 2024-01-19 13:49 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 750 bytes --]

On Fri, Jan 19, 2024, at 20:57, Ihor Radchenko wrote:
> May you please redo the benchmarks using
> 1. M-x profiler-start <RET> cpu <RET>
> 2. Run agenda
> 3. M-x profiler-report
> 4. M-x profiler-report-write-profile <RET> profile.el <RET>
> 5. Share two saved profiles, repeating the above steps with newer and
>    older Org mode.

Please find attached.

> ELP benchmarks on the whole Org mode are useless - they create huge
> overheads on frequently called fast functions, completely messing up the
> information.

I found the profiler-reports harder to read because of the (native-compiled?) lambda that show up and harder to compare since the metric is relative with no absolute reference but well noted and will remember.

-- 
Alexandre Avanian

[-- Attachment #2: cpu-profile-org-9_6_7.el --]
[-- Type: application/octet-stream, Size: 10918 bytes --]


[profiler-profile "28.1" cpu #s(hash-table size 65 test equal rehash-size 1.5 rehash-threshold 0.8125 data ([funcall-interactively command-execute execute-extended-command funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 2 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 72 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_9>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil] 5 ["#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil] 16 ["#<compiled 0x1a044bbfab70e5b2>" execute-extended-command--shorter "#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil] 1 [execute-extended-command--shorter "#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 6 [completion-pcm--merge-try completion-pcm-try-completion "#<compiled 0x736c399fd190e83>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter "#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil] 1 [sit-for "#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 2 ["#<compiled 0x1147000310515e6f>" "#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 1 [funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 4 [org-agenda-files org-agenda-mode org-agenda-prepare "#<compiled -0xfcc478edea2cca4>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil] 1 [org-agenda-files org-agenda-prepare "#<compiled -0xfcc478edea2cca4>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil] 1 [org-agenda-prepare-buffers org-agenda-prepare "#<compiled -0xfcc478edea2cca4>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil] 39 [org-collect-keywords org-set-regexps-and-options org-agenda-prepare-buffers org-agenda-prepare "#<compiled -0xfcc478edea2cca4>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil] 1 [org-agenda-get-blocks org-agenda-get-day-entries apply org-agenda-list funcall-interactively call-interactively "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil] 48 [org-agenda-get-scheduled org-agenda-get-day-entries apply org-agenda-list funcall-interactively call-interactively "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil] 46 [apply org-agenda-list funcall-interactively call-interactively "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil] 7 [org-agenda-get-timestamps org-agenda-get-day-entries apply org-agenda-list funcall-interactively call-interactively "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil] 26 [org-agenda-list funcall-interactively call-interactively "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil] 33 [org-agenda-get-deadlines org-agenda-get-day-entries apply org-agenda-list funcall-interactively call-interactively "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil] 28 [org-agenda-get-sexps org-agenda-get-day-entries apply org-agenda-list funcall-interactively call-interactively "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil] 28 [org-agenda-files org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil] 5 [org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil nil] 275 [org-element-property org--property-local-values org-entry-get-with-inheritance "#<compiled 0x1160b2e5c4692df1>" org-element-cache-map org-scan-tags org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil] 2 [org-entry-get-with-inheritance "#<compiled 0x1160b2e5c4692df1>" org-element-cache-map org-scan-tags org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil] 30 ["#<compiled 0x1160b2e5c4692df1>" org-element-cache-map org-scan-tags org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil] 12 [org-scan-tags org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil] 54 [org-element-cache-map org-scan-tags org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil] 12 [org-agenda-entry-get-agenda-timestamp "#<compiled 0x1160b2e5c4692df1>" org-element-cache-map org-scan-tags org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil] 4 [org-element-property "#<compiled 0x1160b2e6c56436f1>" org-element-cache-map org-scan-tags org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil] 1 [org-element-property org-get-tags "#<compiled 0x1160b2e5c4692df1>" org-element-cache-map org-scan-tags org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil] 1 [org-element-property org-entry-get-with-inheritance "#<compiled -0xdfcd7b380a30e30>" org-element-cache-map org-scan-tags org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil] 1 [regexp-opt org-agenda-skip-if-todo org-agenda-skip-if org-agenda-skip-entry-if org-agenda-skip-eval org-agenda-skip "#<compiled 0x3916498626c546c>" org-element-cache-map org-scan-tags org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively] 1 [org-agenda-finalize-entries org-tags-view "#<compiled -0x86ff28a208ba85a>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil] 3 [org-activate-links--text-properties org-agenda-finalize "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_131>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil] 1 [org-agenda-finalize "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_131>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil nil] 5 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_131>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil nil nil] 1 [org-element--parse-to org-element-at-point org-get-tags org-agenda-finalize "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_131>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil nil] 2 [org-element--parse-to org-element-at-point org-before-first-heading-p org-get-tags org-agenda-finalize "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_131>" funcall let org-agenda-run-series org-agenda-redo funcall-interactively command-execute nil nil nil nil] 1 [if eval redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 178 [completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil nil] 28 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_9>" apply timer-event-handler completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil] 6 [complete-with-action "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_54>" completion-basic-try-completion "#<compiled -0xfd1f0036e0bbf68>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled -0xcc9b5741eec5030>" apply "#<compiled -0x1b9a2ffe236b9a2>" completion--in-region completion-in-region minibuffer-complete funcall-interactively] 5 [complete-with-action "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_54>" completion-pcm--all-completions completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled -0x2bc57e00982259b>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled -0xcc9b5741eec5030>" apply "#<compiled -0x1b9a2ffe236b9a2>" completion--in-region completion-in-region] 1 [complete-with-action "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_54>" completion-emacs22-try-completion "#<compiled -0x2bc57e00982259b>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled -0xcc9b5741eec5030>" apply "#<compiled -0x1b9a2ffe236b9a2>" completion--in-region completion-in-region minibuffer-complete funcall-interactively] 1 [completion--do-completion completion--in-region-1 "#<compiled -0xcc9b5741eec5030>" apply "#<compiled -0x1b9a2ffe236b9a2>" completion--in-region completion-in-region minibuffer-complete funcall-interactively command-execute completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil] 2 [minibuffer-message completion--message completion--do-completion completion--in-region-1 "#<compiled -0xcc9b5741eec5030>" apply "#<compiled -0x1b9a2ffe236b9a2>" completion--in-region completion-in-region minibuffer-complete funcall-interactively command-execute completing-read-default read-extended-command-1 read-extended-command byte-code] 4 [Automatic\ GC] 181)) (26026 31575 485338 0) nil]

[-- Attachment #3: cpu-profile-org-9_7.el --]
[-- Type: application/octet-stream, Size: 55800 bytes --]


[profiler-profile "28.1" cpu #s(hash-table size 487 test equal rehash-size 1.5 rehash-threshold 0.8125 data ([funcall-interactively command-execute execute-extended-command funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 43 [let* org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 3 [let if if let org-agenda-prepare "#<lambda 0xc3f764fec61f68e>" funcall let eval let* progn let* org-agenda-run-series eval if let*] 2 [if "#<lambda 0x1130843900>" mapcar apply setq let org-agenda-files mapcar append easy-menu-change org-agenda-mode if if let org-agenda-prepare "#<lambda 0xc3f764fec61f68e>"] 1 [if "#<lambda 0x1130843900>" mapcar apply setq let org-agenda-files org-agenda-prepare-buffers if if let org-agenda-prepare "#<lambda 0xc3f764fec61f68e>" funcall let eval] 1 [if org-check-agenda-file if set-buffer save-current-buffer catch let while let let org-agenda-prepare-buffers if if let org-agenda-prepare "#<lambda 0xc3f764fec61f68e>"] 54 [symbolp cond org-element-type let* and let* org-element-end or let let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case] 1 [let* if let* org-element-end <= and while let cond let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case] 1 [while let save-restriction save-excursion save-excursion let progn unwind-protect let* org-refresh-stats-properties or save-restriction save-excursion save-current-buffer catch let] 2 [setq save-restriction save-excursion save-current-buffer catch let while let let org-agenda-prepare-buffers if if let org-agenda-prepare "#<lambda 0xc3f764fec61f68e>" funcall] 1 [if "#<lambda 0x1130843900>" mapcar apply setq let org-agenda-files let* catch org-agenda-list funcall-interactively call-interactively let cond "#<lambda 0xa22de183ca280>" funcall] 1 [format list let* org-agenda-get-scheduled cons setq let cond let while let let* progn let save-restriction save-excursion] 275 [save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case if setq let save-restriction save-excursion save-excursion let if org-element-at-point org-element-lineage-map] 1 [format list let* org-agenda-get-blocks cons setq let cond let while let let* progn let save-restriction save-excursion] 308 [format list let* org-agenda-get-deadlines setq let cond let while let let* progn let save-restriction save-excursion save-current-buffer] 46 [if org-check-agenda-file catch while while let* catch org-agenda-list funcall-interactively call-interactively let cond "#<lambda 0xa22de183ca280>" funcall let eval] 17 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map if or org-back-to-heading org-agenda-skip-if org-agenda-skip-entry-if] 1 [format list let* org-agenda-get-sexps cons setq let cond let while let let* progn let save-restriction save-excursion] 34 [if let* if let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited if org-in-commented-heading-p and] 1 [let let org-element--property setq let while let while catch let org-element-property-inherited if org-in-commented-heading-p and or if] 1 [not cond org-element-type let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion] 1 [function org-element-lineage-map if or org-back-to-heading org-agenda-skip-if org-agenda-skip-entry-if eval if progn unwind-protect let save-excursion and let org-agenda-skip-eval] 1 [let let org-element--property org-element--property substring let* catch progn if "#<lambda -0x1a59285f7577ff3e>" funcall cons setq if progn if] 1 [format list let* org-agenda-get-timestamps cons setq let cond let while let let* progn let save-restriction save-excursion] 12 [progn progn setq progn cond let* while if let* save-current-buffer org-element--cache-find and let* save-restriction save-excursion save-current-buffer] 1 [if let* org-agenda-get-day-entries apply setq cond let catch while while let* catch org-agenda-list funcall-interactively call-interactively let] 8 [progn progn setq progn if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map] 1 [org-element-type let* and let* let* save-restriction save-excursion save-current-buffer catch org-element--parse-to setq progn if progn org-element-begin or] 1 [progn while let org-element--deferred-resolve let* catch while let progn if let org-element--property setq let while let] 1 [org-element-begin or max setq if if if progn unwind-protect let progn if progn if if if] 1 [let cond let* and let* org-element-begin let* while if let* save-current-buffer org-element--cache-find and let* save-restriction save-excursion] 1 [if let* if let* and if let* save-current-buffer org-element--cache-find and let* save-restriction save-excursion save-current-buffer catch org-element--parse-to] 1 [1- save-excursion let* catch progn if "#<lambda 0xc53f1c01b9948e5>" funcall cons setq if progn if progn if progn] 1 [or org-em and let* progn let "#<lambda 0x1d8ab7ba95e4db69>" sort mapcar setq progn let org-agenda-finalize-entries insert progn if] 1 [if org-in-commented-heading-p and or if progn unwind-protect let org-agenda-skip catch progn if "#<lambda -0x1a59285c9877ff3e>" funcall cons setq] 1 [and let* let let org-element--property org-element--property memq and if "#<lambda -0xdbb9e84218fe3f8>" funcall cons setq if progn if] 1 [let catch save-excursion org-at-date-range-p or if progn unwind-protect let catch while let* org-agenda-get-timestamps cons setq let] 1 [let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction save-excursion] 2 [let* let let org-element--property and if "#<lambda -0x1a59285c9877ff3e>" funcall cons setq if progn if progn if progn] 1 [and or if let* catch org-agenda-list funcall-interactively call-interactively let cond "#<lambda 0xa22de183ca280>" funcall let eval let* progn] 1 [let* catch org-agenda-list funcall-interactively call-interactively let cond "#<lambda 0xa22de183ca280>" funcall let eval let* progn let while let*] 1 [if "#<lambda 0x1130843900>" mapcar apply setq let org-agenda-files setq progn catch let* org-tags-view let cond "#<lambda 0xa22de183ca280>" funcall] 1 [if org-check-agenda-file catch while catch let* org-tags-view let cond "#<lambda 0xa22de183ca280>" funcall let eval let* progn let] 253 [progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if if if while if] 1 [memq if or setq if progn setq progn if progn if if if while if let*] 3 [or org-em cond progn unwind-protect let let org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda -0xbb43ab7fb10889f>" funcall cons setq] 1 [catch or org--property-get-separator mapconcat setq progn if let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if] 1 [setq if let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 3 [if let* org-element-begin goto-char "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if if] 1 [let* if let* let let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq] 2 [let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0xb1aab94ace2bf4c>" funcall setq progn if while catch] 5 [and progn or progn apply org-element--deferred-resolve-once setq progn while let org-element--deferred-resolve let* catch while let progn] 1 [setq let while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn] 4 [or let cond let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0xb1aab954f31e74c>" funcall setq progn] 7 [setq progn if let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if] 1 [if let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0xb1aab954f31e74c>" funcall setq progn if while] 6 [format list let* org-scan-tags setq save-restriction save-excursion save-current-buffer if catch while catch let* org-tags-view let cond] 29 [let* let let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq if let] 3 [let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let* save-restriction save-excursion let progn] 3 [cond let* and let* org-element-begin = or if if if while if let* save-restriction save-excursion let] 1 [macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if] 1 [or org--property-get-separator mapconcat setq progn if let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn] 1 [org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if] 1 [prog1 car-safe if if setq if if while if let* save-restriction save-excursion let progn if progn] 1 [org-add-prop-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if] 1 [cond org-element-type memq if or if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall] 1 [concat intern org-element--property let* org--property-local-values let* "#<lambda 0xa5a6592332976d7>" funcall setq progn if while catch let org-element-lineage-map let] 4 [org-element-type let* and let* org-element-begin < and or if if while if let* save-restriction save-excursion let] 1 [cond org-element-type let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let* save-restriction save-excursion] 1 [org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall] 1 [plist-get or let cond let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0xb1aab82b988cd4c>" funcall setq] 1 [let* org--property-local-values let* "#<lambda 0xb1aab82b988cd4c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn] 5 [let progn if progn if progn if if if while if let* save-restriction save-excursion let progn] 2 [let* if let* let and if let org-element--property setq let while let while catch let org-element-property-inherited] 1 [if and and if catch "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if] 1 [symbolp cond org-element-type memq if not and while let org-element-lineage setq org--property-local-values let* "#<lambda 0xb1aab92ec58df4c>" funcall setq] 1 [if let* if let* move-marker if let let* progn let* "#<lambda 0x160bf2a8ccea7479>" funcall setq progn if while] 3 [let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq] 4 [while let progn if let org-element--property let* org--property-local-values let* "#<lambda 0x18255cef3a931379>" funcall setq progn if while catch] 1 [if and and if catch "#<lambda 0x1a4c3c3394ef7760>" funcall cons setq if progn if progn if progn if] 1 [cond org-element-type let* if let* let let org-element--property setq let while let while catch let org-element-property-inherited] 1 [with-no-warnings if progn if or let cond let* if let* let let org-element--property setq progn "#<lambda -0xbb43ab7fb10889f>"] 1 [and let* org-element-begin eq or and if progn if if if while if let* save-restriction save-excursion] 1 [catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if] 1 [or set-buffer save-current-buffer if progn if progn if progn if if if while if let* save-restriction] 1 [function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn] 1 [setq if while catch progn setq progn if progn if if if while if let* save-restriction] 1 [and let* set-buffer save-current-buffer org-element--substring apply org-element--deferred-resolve-once setq progn while let org-element--deferred-resolve let* catch while let] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function] 2 [cond progn unwind-protect let let org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn] 1 [let progn if let org-element--property let* org--property-local-values let* "#<lambda 0x199dff2b42858dfc>" funcall setq progn if while catch let] 1 [let* and let* org-element-begin eq or and if progn if if if while if let* save-restriction] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 6 [let* progn let* "#<lambda 0xb1aab9e96dee94c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn] 2 [let let org-element--property setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if] 1 [if let* if let* org-element-begin move-marker if let let* progn let* "#<lambda 0x715ebe2331d30d4>" funcall setq progn if] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all] 2 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 4 [cond let* and let* org-element-contents-end eq if catch progn setq progn if progn if if if] 1 [macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 3 [org-element-begin = or if if if while if let* save-restriction save-excursion let progn if progn let*] 1 [or let cond let* if let* let let org-element--property setq progn "#<lambda 0x1bc0719094ef7760>" funcall cons setq if] 1 [org-element-type let* and let* org-element-begin < and if progn if if if while if let* save-restriction] 1 [cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn] 1 [if progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if] 1 [save-current-buffer eq and save-current-buffer if progn if if if while if let* save-restriction save-excursion let progn] 2 [if setq catch while catch let* org-tags-view let cond "#<lambda 0xa22de183ca280>" funcall let eval let* progn let] 3 [let* org-element-begin = or if if if while if let* save-restriction save-excursion let progn if progn] 2 [progn if progn if if if while if let* save-restriction save-excursion let progn if progn let*] 2 [let* and and let* let let org-element--property org-element-parent setq if catch let org-element-property-inherited mapcar setq if] 1 [let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0x153685ace64a73ec>" funcall setq progn if] 4 [if let while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn] 2 [let org-element--property let* org--property-local-values let* "#<lambda 0xb1aab954f31e74c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq] 2 [save-current-buffer not and if progn if progn if if if while if let* save-restriction save-excursion let] 1 [let* if let* org-element-begin = or if if if while if let* save-restriction save-excursion let progn] 1 [if let org-element--property let* org--property-local-values let* "#<lambda -0xa93fe0c80999f21>" funcall setq progn if while catch let org-element-lineage-map let] 1 [progn if let org-element--property let* org--property-local-values let* "#<lambda -0xa93fe0c80999f21>" funcall setq progn if while catch let org-element-lineage-map] 2 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 2 [if progn if if if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map] 2 [setq while catch progn setq progn if progn if if if while if let* save-restriction save-excursion] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 4 [if org-element-at-point org-element-lineage setq org--property-local-values let* "#<lambda 0xa5a6592332976d7>" funcall setq progn if while catch let org-element-lineage-map let] 2 [eq save-current-buffer not and if progn if progn if if if while if let* save-restriction save-excursion] 2 [macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure] 1 [if let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons] 1 [intern org-element--property let* org--property-local-values let* "#<lambda 0xa5a6592332976d7>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance] 6 [mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if] 1 [cdr car if let cond let* and let* and let* or org-element--cache-key org-element--cache-key-less-p and or and] 1 [and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion] 1 [let org-element--property setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if if] 1 [plist-get or let cond let* if let* let let org-element--property setq let while let while catch] 2 [aref progn progn org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction] 1 [org-element-type let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if] 1 [let* "#<lambda 0xb1aab82b988cd4c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x1bc0719094ef7760>" funcall] 1 [car eq if let cond let* and let* let and if let org-element--property let* org--property-local-values let*] 2 [org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map] 1 [setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if if if while] 1 [let while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>"] 1 [if progn if or let cond let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0x160bf2a8ccea7479>"] 1 [nconc nreverse delete-dups nreverse if let if org-get-tags setq progn "#<lambda 0x1a4c3c3394ef7760>" funcall cons setq if progn] 1 [macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 1 [car eq if let cond let* and and let* let let org-element--property org-element-parent setq while catch] 1 [eq if let* if let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if] 1 [cond let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction] 1 [not and or if if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map] 1 [cons setq if progn if progn if progn if if if while if let* save-restriction save-excursion] 1 [memq if or if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq] 1 [org-element-lineage setq org--property-local-values let* "#<lambda 0x1605014569b894ac>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq] 3 [memq if or if progn if progn if if if while if let* save-restriction save-excursion let] 2 [progn let* catch while let progn if let org-element--property let* org--property-local-values let* "#<lambda 0x199dff2b42858dfc>" funcall setq progn] 1 [let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let*] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>"] 1 [and if let org-element--property let* org--property-local-values let* "#<lambda 0x113fee798ccbd946>" funcall setq progn if while catch let org-element-lineage-map] 1 [setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons] 1 [with-no-warnings if progn if or let cond let* if let* let let org-element--property setq let while] 2 [if let* let let org-element--property setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if] 1 [if not and while let org-element-lineage setq org--property-local-values let* "#<lambda 0x715ebe2331d30d4>" funcall setq progn if while catch] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [eq if let cond let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0x715ebe2331d30d4>"] 1 ["#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if if if while if let*] 1 [let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn] 1 [progn if progn if progn if if if while if let* save-restriction save-excursion let progn if] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 1 [eq cond let* and and let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar] 1 [cond org-element-type let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while] 1 [eq cond let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0xb1aab954f31e74c>" funcall setq progn if] 3 [macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 1 [macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance] 2 [while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq] 1 [cond org-element-type let* and let* org-element-contents-end eq if catch progn setq progn if progn if if] 1 [cond let* and let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if] 2 [let* "#<lambda 0xa5a6592332976d7>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall] 1 [not cond org-element-type let* and and let* let let org-element--property org-element-parent setq while catch progn setq] 1 [with-no-warnings if progn if or let cond let* if let* let let org-element--property let* org--property-local-values let*] 1 [macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall] 1 [if let* let let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq if] 1 [and let* and let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion] 1 [org-element--property let* org--property-local-values let* "#<lambda 0xb1aab82b988cd4c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq] 2 [org-entry-get-with-inheritance setq progn "#<lambda 0x13f7cb82c10ea586>" funcall cons setq if progn if progn if progn if if if] 1 [let* if let* let let org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons] 1 [if or if progn unwind-protect let progn if progn if progn if if if while if] 3 [let* and let* org-element-contents-end eq if while catch progn setq progn if progn if if if] 1 [macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [macroexp-macroexpand macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall] 1 [while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall] 1 [eq save-current-buffer and if progn if progn if if if while if let* save-restriction save-excursion let] 2 [setq if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if] 1 [if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [setq progn if progn if progn if if if while if let* save-restriction save-excursion let progn] 1 [macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons] 1 [cdr car if let cond let* and let* and let* or org-element--cache-key org-element--cache-key-less-p not or and] 1 [if let* let let org-element--property org-element-parent setq if catch let org-element-property-inherited mapcar setq if let if] 2 [if let cond let* and let* and let* or org-element--cache-key org-element--cache-key-less-p and or and if setq] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses] 2 [nconc nreverse delete-dups nreverse if let if org-get-tags setq progn "#<lambda 0x1bc0719094ef7760>" funcall cons setq if progn] 1 [org-element--property setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if if if] 1 [org-element-type let* and let* org-element-begin move-marker if let let* progn let* "#<lambda 0x73689aec32d6890>" funcall setq progn if] 1 [not cond org-element-type let* and let* org-element-begin move-marker if let let* progn let* "#<lambda 0x731359dc32d6890>" funcall setq] 1 [if let* if let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if] 1 [if let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let* save-restriction] 1 [org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>"] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms] 2 [let org-element-lineage org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses] 2 [if let* if let* and let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if] 1 [let* let let org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if] 1 [let* if let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn] 1 [macroexp-macroexpand macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 1 [let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags] 2 [let* and and let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if] 1 ["#<lambda 0x1a4c3c3394ef7760>" funcall cons setq if progn if progn if progn if if if while if let*] 1 [or set-buffer save-current-buffer not and if progn if progn if if if while if let* save-restriction] 1 [setq progn "#<lambda 0x1bc0719094ef7760>" funcall cons setq if progn if progn if progn if if if while] 1 [if let* org-element-contents-end eq if while catch progn setq progn if progn if if if while] 1 [eq if let cond let* and let* org-element-begin < and if progn if if if while] 1 [cond org-element-type let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0x735dab862ab8855>" funcall setq] 3 [< and or if if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map] 1 [or if progn unwind-protect let progn if progn if progn if if if while if let*] 1 [not cond org-element-type let* and and let* let let org-element--property org-element-parent setq if catch let org-element-property-inherited] 1 [symbolp cond org-element-type memq if or if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>"] 1 [let* let and if let org-element--property let* org--property-local-values let* "#<lambda -0x149976357cf9d40c>" funcall setq progn if while catch] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn] 1 [car eq if let cond let* and let* org-element-contents-end eq if while catch progn setq progn] 1 [if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if if] 1 [if let cond let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p and or and if setq] 1 [cond org-element-type let* and and let* let let org-element--property org-element-parent setq if catch let org-element-property-inherited mapcar] 1 [org-element-type memq if or if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons] 1 [org-element-type memq if not and while let org-element-lineage setq if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons] 1 [setq org--property-local-values let* "#<lambda 0x715ebe2331d30d4>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all] 1 [let* and let* if progn if if if while if let* save-restriction save-excursion let progn if] 2 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance] 2 [eq cond let* and let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if while] 1 [let cond let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda -0x2cdca623cd3c979>" funcall setq] 1 [if let cond let* and let* org-element-begin move-marker if let let* progn let* "#<lambda 0x731359dc32ca590>" funcall setq] 1 [or let cond let* if let* let let org-element--property setq let while let while catch let] 1 [funcall cons setq if progn if progn if progn if if if while if let* save-restriction] 1 [cond let* and let* org-element-begin goto-char "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn] 1 [progn if or let cond let* if let* let let org-element--property setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons] 1 [eq and save-current-buffer if progn if if if while if let* save-restriction save-excursion let progn if] 2 [let cond let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0xb1aab94ace2bf4c>" funcall setq progn if] 1 [let let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq if let if] 1 [cond org-element-type memq if not and while let org-element-lineage setq org--property-local-values let* "#<lambda 0xb1aab954f31e74c>" funcall setq progn] 1 [org--property-local-values let* "#<lambda 0xa5a6592332976d7>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>"] 1 [cond org-element-type let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 1 [and and let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let] 1 [org-element-begin let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction] 1 [org-element--property org-element-parent setq while catch progn setq progn if progn if if if while if let*] 1 [if or if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if] 1 [while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x1bc0719094ef7760>" funcall] 1 [let let org-element--property let* org--property-local-values let* "#<lambda 0x735dab862ab8855>" funcall setq progn if while catch let org-element-lineage-map let] 2 [let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion let progn if] 1 [move-marker if let let* progn let* "#<lambda 0x735dab862ab8855>" funcall setq progn if while catch let org-element-lineage-map let] 1 [and let* let let org-element--property org-element-parent setq if catch let org-element-property-inherited mapcar setq if let if] 1 [function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x1a4c3c3394ef7760>" funcall cons setq if progn if progn if progn] 1 [and let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if] 1 [org--property-local-values let* "#<lambda 0xb1aa86c524be34c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x1a4c3c3394ef7760>"] 1 [setq progn progn if "#<lambda 0x1a4c3c3394ef7760>" funcall cons setq if progn if progn if progn if if] 1 [cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if] 1 [or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction save-excursion let] 1 [let* and let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let*] 1 [cond let* and let* let and if let org-element--property setq let while let while catch let] 1 [cdr car if let cond let* and and let* let let org-element--property org-element-parent setq while catch] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn] 1 [if let* if let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq] 1 [macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [if org-element-at-point org-element-lineage org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda 0x1bc0719094ef7760>" funcall cons setq if] 1 [cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if] 1 [if let* let let org-element--property let* org--property-local-values let* "#<lambda -0x6ca76513cd37875>" funcall setq progn if while catch let] 1 [let* and let* and let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while] 1 [org-element--property setq progn "#<lambda 0x1bc0719094ef7760>" funcall cons setq if progn if progn if progn if if if] 1 [org-element--cache-key-less-p and or and if setq if if while if let* save-restriction save-excursion let progn if] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map] 2 [org-element-type let* and let* org-element-begin = or if if if while if let* save-restriction save-excursion let] 1 [let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn if progn if] 1 [if "#<lambda 0x1130843900>" mapcar apply setq let org-agenda-files setq catch let* org-search-view let cond "#<lambda 0xa22de183ca280>" funcall let] 1 [car if let cond let* and let* move-marker if let let* progn let* "#<lambda 0xb1aab954f31e74c>" funcall setq] 1 [org-element-lineage setq if org-get-tags setq progn "#<lambda 0x6f0b2fa760ed098>" funcall cons setq if progn if progn if progn] 1 [mapcar setq if let if org-get-tags setq progn "#<lambda 0x6f0b2fa760ed098>" funcall cons setq if progn if progn] 1 [let* and let* org-element-begin < and or if if while if let* save-restriction save-excursion let progn] 1 [mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda 0x6f0b2fa760ed098>" funcall cons setq if progn if progn if] 1 [org-scan-tags setq save-restriction save-excursion save-current-buffer if catch while catch let* org-tags-view let cond "#<lambda 0xa22de183ca280>" funcall let] 1 [eq if let cond let* and let* org-element-contents-begin progn if or setq if progn setq progn] 1 [not cond org-element-type let* and let* org-element-contents-end eq if while catch progn setq progn if progn] 1 [setq if progn if let* progn unwind-protect let let* org-agenda-format-item setq progn let* cond progn if] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [car if let cond let* and let* and let* or org-element--cache-key org-element--cache-key-less-p and or and if] 1 [org-element-lineage setq if org-get-tags setq progn "#<lambda -0x1ab276b6de32acbb>" funcall cons setq if progn if progn if progn] 1 [< and or and if setq if if while if let* save-restriction save-excursion let progn if] 1 [if progn setq progn if progn if if if while if let* save-restriction save-excursion let progn] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function mapcar delq setq] 1 [org-add-props let* progn unwind-protect let let* org-agenda-format-item setq progn let* cond progn if catch "#<lambda 0x13a7f26d2928a201>" funcall] 1 [catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x1bc0719094ef7760>" funcall cons setq if progn if progn if] 1 [while if let* save-current-buffer org-element--cache-find and let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case if setq let] 1 [if append setq if if let while let while catch let org-element-property-inherited mapcar setq if let] 1 [let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction] 1 [if and and if catch "#<lambda 0x2c308901c664859>" funcall cons setq if progn if progn if progn if] 1 [cond org-element-type let* and and let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited if] 1 [if progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x4f9dc51fec0f573>" funcall cons setq if] 1 [let* if let* let let org-element--property setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn if progn] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x1a4c3c3394ef7760>" funcall] 1 [let* progn unwind-protect let let* org-agenda-format-item setq progn let* cond progn if catch "#<lambda 0x152fda19f871c7a7>" funcall cons] 1 [function mapconcat concat setq let progn if progn if org-agenda-fix-displayed-tags setq progn unwind-protect let let* org-agenda-format-item] 1 [let cond let* if let org-agenda-skip-if-todo and or and let* org-agenda-skip-if org-agenda-skip-entry-if eval if progn unwind-protect] 1 [let* progn unwind-protect let let* org-agenda-format-item setq progn let* cond progn if catch "#<lambda -0x8c4fdf257c0e062>" funcall cons] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 2 [not if if progn unwind-protect let org-get-priority setq progn let* cond progn if catch "#<lambda 0x9f9eeb44f389450>" funcall] 1 [let* and and let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq] 1 [org-element-type let* and let* org-element-contents-begin progn if or setq if progn setq progn if progn if] 1 [while let org-element-lineage setq org--property-local-values let* "#<lambda 0x199dff2b42858dfc>" funcall setq progn if while catch let org-element-lineage-map let] 1 [cdr car if let cond let* and let* org-element-begin goto-char cond progn if catch "#<lambda 0x117371891c3f2cdf>" funcall] 1 [or org-element--cache-key org-element--cache-key-less-p not and or if if while if let* save-restriction save-excursion let progn if] 1 [or org-em cond progn unwind-protect let let org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda -0x5f0e51f83628792>" funcall cons setq] 1 [let let org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda -0x5f0e51f83628792>" funcall cons setq if progn if progn if] 2 [cond org-element-type let* if let* let let org-element--property setq progn "#<lambda -0x5f0e51f83628792>" funcall cons setq if progn] 1 [cond let* and let* and let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if] 1 [and let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0x715ebe2331d30d4>" funcall setq progn if while] 1 [not if if progn unwind-protect let org-get-priority setq progn let* cond progn if catch "#<lambda -0x13a7230544cb7fb1>" funcall] 1 [if progn if or let cond let* if let* let let org-element--property setq let while let] 1 [let* if let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let*] 1 [let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0xbb43ab7fb10889f>" funcall] 1 [and let* let let org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq] 1 [let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0xbb43ab7fb10889f>" funcall cons setq if progn] 1 [let let* progn let* "#<lambda 0x731359dc32d6890>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq] 1 [not if if progn unwind-protect let org-get-priority setq progn let* cond progn if catch "#<lambda -0x1a05f83ff7766f0a>" funcall] 1 [org-element-at-point org-element-lineage setq org--property-local-values let* "#<lambda 0x431359dc32c3693>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance] 1 [if concat setq progn if progn if let if let org-agenda-highlight-todo mapcar setq progn let org-agenda-finalize-entries] 1 [let let* let* org-agenda-run-series eval if let* org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil] 1 [while let save-excursion org-agenda-fontify-priorities progn if save-excursion let if org-agenda-finalize "#<lambda 0xab02540>" funcall let eval let* progn] 4 [progn if or let cond let* if let* let let org-element--property setq let while let while] 1 [if let* if let* org-element-begin let* while if let* save-current-buffer org-element--cache-find and let* save-restriction save-excursion save-current-buffer] 1 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_9>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 101 [completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil nil] 14 [command-execute completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil] 1 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_9>" apply timer-event-handler completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil] 5 [funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [Automatic\ GC] 1333)) (26026 31779 539448 0) nil]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-19 13:49   ` dark.key8799
@ 2024-01-19 14:00     ` Ihor Radchenko
  2024-01-19 14:50       ` dark.key8799
  0 siblings, 1 reply; 14+ messages in thread
From: Ihor Radchenko @ 2024-01-19 14:00 UTC (permalink / raw)
  To: dark.key8799; +Cc: emacs-orgmode

dark.key8799@151e.ai writes:

> Please find attached.

Thanks!

> I found the profiler-reports harder to read because of the (native-compiled?) lambda that show up and harder to compare since the metric is relative with no absolute reference but well noted and will remember.

Yeah. For some reason, the profiler report in Org 9.7 looks strange.
May you open org-agenda.el and org-element.el and M-x eval-buffer in
these two files before generating the report? It should make the results
more readable.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-19 14:00     ` Ihor Radchenko
@ 2024-01-19 14:50       ` dark.key8799
  2024-01-19 15:15         ` Ihor Radchenko
  0 siblings, 1 reply; 14+ messages in thread
From: dark.key8799 @ 2024-01-19 14:50 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 317 bytes --]

On Fri, Jan 19, 2024, at 22:00, Ihor Radchenko wrote:
> May you open org-agenda.el and org-element.el and M-x eval-buffer in
> these two files before generating the report? It should make the results
> more readable.

There you go, there's still some lambdas but more of the calls are explicit.

-- 
Alexandre Avanian

[-- Attachment #2: cpu-profile-org-9_7-v2.el --]
[-- Type: application/octet-stream, Size: 75937 bytes --]


[profiler-profile "28.1" cpu #s(hash-table size 487 test equal rehash-size 1.5 rehash-threshold 0.8125 data ([nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 58 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_9>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil] 5 ["#<compiled 0x1a044bbfab70e5b2>" execute-extended-command--shorter "#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil] 2 ["#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil nil] 16 [completion-pcm--find-all-completions completion-pcm-try-completion "#<compiled 0x736fb60c6190e83>" completion--some completion--nth-completion completion-try-completion execute-extended-command--shorter "#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil] 3 [sit-for "#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 3 ["#<compiled 0x1147000310515e6f>" "#<compiled -0x16390455f85ca456>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 1 [let* org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 3 [let if if let org-agenda-prepare "#<lambda 0xc3f764fddcf1332>" funcall let eval let* progn let* org-agenda-run-series eval if let*] 2 [if "#<lambda 0x111f420160>" mapcar apply setq let org-agenda-files mapcar append easy-menu-change org-agenda-mode if if let org-agenda-prepare "#<lambda 0xc3f764fddcf1332>"] 1 [if "#<lambda 0x111f420160>" mapcar apply setq let org-agenda-files org-agenda-prepare-buffers if if let org-agenda-prepare "#<lambda 0xc3f764fddcf1332>" funcall let eval] 1 [if org-check-agenda-file if set-buffer save-current-buffer catch let while let let org-agenda-prepare-buffers if if let org-agenda-prepare "#<lambda 0xc3f764fddcf1332>"] 57 [org-element--cache-active-p and let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case if setq let save-restriction save-excursion save-excursion let] 1 [while let save-restriction save-excursion save-excursion let progn unwind-protect let* org-refresh-stats-properties or save-restriction save-excursion save-current-buffer catch let] 1 [if "#<lambda 0x111f420160>" mapcar apply setq let org-agenda-files let* catch org-agenda-list funcall-interactively call-interactively let cond "#<lambda 0xa22d19e5a1280>" funcall] 1 [format list let* org-agenda-get-scheduled cons setq let cond let while let let* progn let save-restriction save-excursion] 257 [org-element-type let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if] 1 [format list let* org-agenda-get-blocks cons setq let cond let while let let* progn let save-restriction save-excursion] 283 [format list let* org-agenda-get-deadlines setq let cond let while let let* progn let save-restriction save-excursion save-current-buffer] 43 [format list let* org-agenda-get-sexps cons setq let cond let while let let* progn let save-restriction save-excursion] 37 [memq if or setq if progn setq progn if progn if if if while if let*] 1 [if let* org-agenda-get-day-entries apply setq cond let catch while while let* catch org-agenda-list funcall-interactively call-interactively let] 13 [function let* let* save-restriction save-excursion let progn if progn let* org-element-cache-map let* org-agenda-get-deadlines setq let cond] 2 [format list let* org-agenda-get-timestamps cons setq let cond let while let let* progn let save-restriction save-excursion] 25 [or org-element--cache-key org-element--cache-key-less-p not and or if if while if let* save-restriction save-excursion let progn if] 3 [if if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map let* org-agenda-get-scheduled cons] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function let* let* save-restriction save-excursion let progn if progn let*] 1 [if org-check-agenda-file catch while while let* catch org-agenda-list funcall-interactively call-interactively let cond "#<lambda 0xa22d19e5a1280>" funcall let eval] 39 [and and let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map if or org-back-to-heading org-agenda-skip-if] 1 [if progn if if if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map] 1 [if catch progn setq progn if progn if if if while if let* save-restriction save-excursion let] 1 [macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 3 [cond org-entry-get let* catch progn if "#<lambda 0xf20ae7791f17ec2>" funcall cons setq if progn if progn if progn] 1 [org-element-type let* and let* org-element-end or let let* save-restriction save-excursion save-current-buffer catch org-element--parse-to setq progn if] 1 [let let org-element--property and if "#<lambda -0x11b17b6c6e14c892>" funcall cons setq if progn if progn if progn if] 1 [save-current-buffer org-element--cache-active-p and let* save-restriction save-excursion save-current-buffer catch org-element--parse-to setq progn if progn org-element-begin or max] 1 [= or if if if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map] 1 [org-element--cache-active-p and if let save-restriction save-excursion save-excursion let if org-element-at-point save-restriction save-excursion let progn if progn] 1 [progn if let cond let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case if setq let save-restriction save-excursion] 1 [if progn setq progn if progn if if if while if let* save-restriction save-excursion let progn] 2 [let* and let* org-element-contents-begin progn if or setq if progn setq progn if progn if if] 2 [let* and let* org-element-begin < and or if if progn unwind-protect let progn if progn if] 1 [car if let cond let* and let* org-element-end let while let let* save-restriction save-excursion save-current-buffer catch] 1 [not if if progn unwind-protect let org-get-priority + let org-add-props let* save-excursion let* catch progn if] 1 [save-excursion and let org-agenda-skip-eval or let or if progn unwind-protect let org-agenda-skip catch progn if "#<lambda -0x11656afb28e4c892>"] 1 [if let* progn unwind-protect let let* org-agenda-format-item let* save-excursion let* catch progn if "#<lambda 0xacfff2687b50ae0>" funcall cons] 1 [if org-parse-time-string encode-time org-time-string-to-time condition-case time-to-days cond org-time-string-to-absolute apply condition-case org-agenda--timestamp-to-absolute cond let* catch progn if] 1 [let* while if let* save-current-buffer org-element--cache-find and let* save-restriction save-excursion save-current-buffer catch org-element--parse-to setq progn if] 1 [if or if progn unwind-protect let progn if progn if if if while if let* save-restriction] 1 [progn org-element--cache-root let* save-current-buffer org-element--cache-find and let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case if setq let] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 7 [plist-put setq if while let org-plist-delete apply if concat setq progn if progn if let if] 1 [let* let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case if setq let save-restriction save-excursion save-excursion let if] 1 [org-element-type let* and let* let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case if setq let save-restriction save-excursion] 1 [catch while let progn if let org-element--property setq let while let while catch let org-element-property-inherited if] 1 [cond let* save-excursion let* catch progn if "#<lambda -0x18ef3d05d04721f4>" funcall cons setq if progn if progn if] 1 [and let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map if or org-back-to-heading org-agenda-skip-if org-agenda-skip-entry-if] 1 [cond org-element-type let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if] 2 [with-no-warnings org-agenda-get-blocks cons setq let cond let while let let* progn let save-restriction save-excursion save-current-buffer if] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-cache-map let* org-agenda-get-scheduled cons] 1 [let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction save-excursion] 2 [let* and let* org-element-end or let let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case if setq let] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-cache-map let* org-agenda-get-deadlines setq let cond let while let] 1 [and if let* save-restriction save-excursion let progn if progn let* org-element-cache-map let* org-agenda-get-scheduled cons setq let] 1 [let* catch org-agenda-list funcall-interactively call-interactively let cond "#<lambda 0xa22d19e5a1280>" funcall let eval let* progn let while let*] 2 [if "#<lambda 0x111f420160>" mapcar apply setq let org-agenda-files setq progn catch let* org-tags-view let cond "#<lambda 0xa22d19e5a1280>" funcall] 1 [if org-check-agenda-file catch while catch let* org-tags-view let cond "#<lambda 0xa22d19e5a1280>" funcall let eval let* progn let] 246 [macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 7 [or let cond let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0x1536eff8750e81ec>" funcall setq progn] 6 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function] 1 [if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if if] 1 [if org-element-at-point org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if] 1 [org-element-begin = or if if if while if let* save-restriction save-excursion let progn if progn let*] 1 ["#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if if if while if let*] 1 [let* and and let* let let org-element--property org-element-parent setq while catch progn setq progn if progn] 1 [if let* and let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [intern org-element--property let* org--property-local-values let* "#<lambda -0xa930c4954c04121>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance] 8 [let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda -0xa930c4954c04121>" funcall setq progn if] 3 [or let cond let* if let* let let org-element--property setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if] 1 [let* and let* org-element-begin > not or and if while if let* save-restriction save-excursion let progn] 2 [cond org-element-type if org-element-at-point org-element-lineage setq org--property-local-values let* "#<lambda 0xb1ad95a9b64f94c>" funcall setq progn if while catch let] 3 [progn let* "#<lambda 0xb1ad95a9b64f94c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>"] 1 [if let cond let* and let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if] 1 [let* if let* let let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq] 4 [if or if progn unwind-protect let progn if progn if progn if if if while if] 4 [let* progn let* "#<lambda 0xa5deeb8aec004d7>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn] 2 [car eq if let cond let* and let* org-element-begin move-marker if let let* progn let* "#<lambda 0xa5deeb8aec004d7>"] 1 [and let* org-element-begin < and if progn if if if while if let* save-restriction save-excursion let] 1 [or set-buffer save-current-buffer eq and save-current-buffer if progn if if if while if let* save-restriction save-excursion] 5 [let* org--property-local-values let* "#<lambda 0xa5deeb8aec004d7>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn] 4 [let* and and let* let let org-element--property org-element-parent setq if catch let org-element-property-inherited mapcar setq if] 1 [org-element-type let* and let* org-element-begin eq or and if progn if if if while if let*] 1 [if progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if] 1 [cond org-element-type let* and let* and let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn] 1 [org-element-type if org-element-at-point org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x4a1d854da66468b>" funcall cons setq if progn if progn] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 6 [org-element-contents-begin progn if or setq if progn setq progn if progn if if if while if] 1 [if and and if catch "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if] 1 [let* if let* and let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while] 1 [function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn] 1 [format list let* org-scan-tags setq save-restriction save-excursion save-current-buffer if catch while catch let* org-tags-view let cond] 32 [org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if] 1 [let* if let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn] 1 [org-element-type let* and let* org-element-begin < and or if if progn unwind-protect let progn if progn] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq] 1 [org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>"] 1 [cdr car if let cond let* and and let* let let org-element--property org-element-parent setq while catch] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 5 [progn progn org-element-begin < and or and if setq if if while if let* save-restriction save-excursion] 1 [macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 4 [let let org-element--property let* org--property-local-values let* "#<lambda 0x1b7c195e15e618cf>" funcall setq progn if while catch let org-element-lineage-map let] 8 [or set-buffer save-current-buffer if progn if if if while if let* save-restriction save-excursion let progn if] 2 [if let* if let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq] 2 [concat intern org-element--property let* org--property-local-values let* "#<lambda -0x1554ed051d31835>" funcall setq progn if while catch let org-element-lineage-map let] 10 [org-element--property let* org--property-local-values let* "#<lambda 0xb1ad955f1166c4c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq] 6 [let while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons] 1 [funcall cons setq if progn if progn if progn if if if while if let* save-restriction] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 3 [setq if catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons] 1 [memq if or if progn if progn if if if while if let* save-restriction save-excursion let] 2 [cond org-element-type let* and let* org-element-contents-begin progn if or setq if progn setq progn if progn] 1 [cond org-element-type if org-element-at-point org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if] 1 [org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall] 1 [let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0x7150948aeee6ed4>" funcall setq progn if while catch] 3 [while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map save-excursion let* org-scan-tags setq save-restriction] 3 [let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let* save-restriction save-excursion let progn] 4 [cond let* if let* let let org-element--property setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if] 1 [let* and and let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq] 3 [if if let while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq] 2 [let* let let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq if let] 1 [if setq catch while catch let* org-tags-view let cond "#<lambda 0xa22d19e5a1280>" funcall let eval let* progn let] 1 [if and and if catch "#<lambda -0x4a1d854da66468b>" funcall cons setq if progn if progn if progn if] 1 [if let cond let* and let* org-element-contents-begin progn if or setq if progn setq progn if] 1 [setq progn "#<lambda -0x4a1d854da66468b>" funcall cons setq if progn if progn if progn if if if while] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 4 [cond org-remove-uninherited-tags nconc nreverse delete-dups nreverse if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq] 1 [macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [with-no-warnings if progn if or let cond let* if let* let let org-element--property mapcar org--get-local-tags let] 2 [and if let org-element--property let* org--property-local-values let* "#<lambda 0x4318b51350c1593>" funcall setq progn if while catch let org-element-lineage-map] 5 [macroexp-macroexpand macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 3 [if or if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if] 1 [symbolp cond org-element-type memq if or if progn if progn if if if while if let*] 1 [macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let] 2 [org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let* save-restriction save-excursion let] 2 [let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags] 3 [org-element-type let* if let* let let org-element--property setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if] 1 [org-element-lineage org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if] 1 [macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn] 1 [memq if or if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq] 1 [let and if let org-element--property let* org--property-local-values let* "#<lambda -0xa930c4954c04121>" funcall setq progn if while catch let] 4 [if or let cond let* if let* let let org-element--property setq let while let while catch] 1 [with-no-warnings if progn if or let cond let* if let* let let org-element--property setq let while] 2 [cond let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction] 1 [and let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let* save-restriction] 2 [not cond org-element-type let* if let* let let org-element--property let* org--property-local-values let* "#<lambda -0x1a4b5b8ec05dd833>" funcall setq progn] 1 [let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0xa5deeb8aec004d7>" funcall setq progn if while catch] 1 [let org-element-lineage org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn] 1 [org--property-local-values let* "#<lambda 0xa5deeb8aec004d7>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>"] 1 [macroexp-macroexpand macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if] 1 [org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if if if] 1 [let let org-element--property org-element-parent setq while catch progn setq progn if progn if if if while] 1 [let let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq if let if] 2 [org-element-parent setq if catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map] 2 [cond org-element-type let* and let* org-element-begin eq or and if progn if if if while if] 1 [let* and let* org-element-contents-end eq if catch progn setq progn if progn if if if while] 1 [if catch "#<lambda -0x4a1d854da66468b>" funcall cons setq if progn if progn if progn if if if while] 1 [let org-element--property setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if if] 1 [cond let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if] 2 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms] 2 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function] 3 [org-element-type let* and let* org-element-begin < and or if if while if let* save-restriction save-excursion let] 1 [org-element--property setq let while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq] 1 [eq cond let* if let* let let org-element--property setq let while let while catch let org-element-property-inherited] 1 [cond let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let* save-restriction save-excursion let] 1 [let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let*] 3 [org-element-begin let save-restriction save-excursion save-current-buffer org-element--substring apply org-element--deferred-resolve-once setq progn while let org-element--deferred-resolve let* catch while] 1 [org-element-type if org-element-at-point org-element-lineage setq org--property-local-values let* "#<lambda 0x1494e686e0fdf5dd>" funcall setq progn if while catch let org-element-lineage-map] 2 [and let* org-element-begin move-marker if let let* progn let* "#<lambda 0xb1ae7182c269e4c>" funcall setq progn if while catch] 1 [org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if] 1 [or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion let progn if progn] 1 [org-element-type let* and and let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq] 2 [cdr car if let cond let* and let* let and if let org-element--property setq let while] 1 [progn progn setq while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map save-excursion let*] 2 [progn let and if let org-element--property let* org--property-local-values let* "#<lambda -0x1554ed051d31835>" funcall setq progn if while catch] 1 [cond org-element-type let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while] 1 [setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if if if while] 1 [symbolp cond org-element-type let* and let* if progn if if if while if let* save-restriction save-excursion] 1 [symbolp cond org-element-type let* and let* org-element-begin < and or if if while if let* save-restriction] 2 [let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq] 3 [memq if not and while let org-element-lineage setq org--property-local-values let* "#<lambda 0x157e564bb27a0cec>" funcall setq progn if while] 2 [org-element-type let* and let* org-element-begin > not or and if while if let* save-restriction save-excursion let] 2 [let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq] 1 [if let cond let* and let* org-element-begin goto-char "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn] 1 [macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance] 1 [let* and let* and let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while] 2 [let let org-element--property setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if] 1 [if let* if let* let let org-element--property org-element-parent setq while catch progn setq progn if progn] 2 [progn progn if "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if if if] 1 [org-element-type memq if or if progn if progn if if if while if let* save-restriction save-excursion] 1 [let* if let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let*] 2 [symbolp cond org-element-type let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0x6324663350dee92>" funcall] 1 [let cond let* if let* let let org-element--property setq let while let while catch let org-element-property-inherited] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 2 [nreverse if let if org-get-tags setq progn "#<lambda -0x4a1d854da66468b>" funcall cons setq if progn if progn if] 1 [progn if or let cond let* if let* let let org-element--property mapcar org--get-local-tags let if org-get-tags] 2 [let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if if] 1 [function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x4a1d854da66468b>" funcall cons setq if progn if progn if progn] 1 [and if let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x4a1d854da66468b>" funcall] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons] 1 [cond org-element-type let* if let* let let org-element--property setq let while let while catch let org-element-property-inherited] 1 [mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn] 1 [if let* let let org-element--property let* org--property-local-values let* "#<lambda -0x4cd74aecaf3bf73>" funcall setq progn if while catch let] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let] 2 [macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure] 2 [macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 2 [org-element-type let* and let* org-element-begin = or if if if while if let* save-restriction save-excursion let] 1 [org-add-prop-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if] 1 [cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if] 1 [org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion let progn] 1 [let org-element-lineage setq if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [plist-get or let cond let* if let* let let org-element--property setq let while let while catch] 1 [progn progn org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction save-excursion] 1 [not cond org-element-type memq if not and while let org-element-lineage setq org--property-local-values let* "#<lambda 0xa5deeb8aec004d7>" funcall setq] 2 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all] 2 [let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons] 1 [let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn] 1 [and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if] 1 [org-element-lineage setq org--property-local-values let* "#<lambda 0xb1ad962333db24c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq] 4 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn] 1 [if org-element-at-point org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x4a3dd47da66468b>" funcall cons setq if progn if progn if] 1 [org-element-lineage setq if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn] 1 [not if if progn unwind-protect let org-get-priority setq progn let* cond progn if catch "#<lambda 0x1ce3936828158dec>" funcall] 2 [cond org-element-type let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0x7358b742cb1aa55>" funcall setq progn if] 2 [cond org-element-type let* and let* org-element-begin < and or if if progn unwind-protect let progn if] 1 [and if let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq if let] 1 [org-element-type let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0x160b4e7c9fbc4679>" funcall setq progn] 2 [let progn if progn if progn if if if while if let* save-restriction save-excursion let progn] 2 [cond org-element-type let* and let* let and if let org-element--property setq let while let while catch] 1 [if let* if let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function org-element-lineage-map] 3 [let* if let* let and if let org-element--property let* org--property-local-values let* "#<lambda -0x149924db1a44b60c>" funcall setq progn if] 1 [plist-member with-no-warnings if progn if or let cond let* if let* let let org-element--property setq let] 1 [< or if if progn unwind-protect let progn if progn if progn if if if while] 1 [let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction] 1 [or let cond let* if let* let let org-element--property setq let while let while catch let] 2 [cond org-element-type let* and let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if while] 2 [if let org-element--property setq let while let while catch let org-element-property-inherited mapcar setq if let if] 1 [org--property-local-values let* "#<lambda -0x1554ed051d31835>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>"] 1 [if let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0xb1ad955f1166c4c>" funcall setq progn if while] 2 [not cond org-element-type let* and and let* let let org-element--property org-element-parent setq if catch let org-element-property-inherited] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms] 2 [apply org-element--deferred-resolve-once setq progn while let org-element--deferred-resolve let* catch while let progn if let org-element--property let*] 1 [cdr car if let cond let* and and let* let let org-element--property org-element-parent setq if catch] 1 [cond org-element-type let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0x168f7a6217ab2f89>" funcall setq] 3 [if progn if progn if if if while if let* save-restriction save-excursion let progn if progn] 1 [org--property-local-values let* "#<lambda 0x168f7a6217ab2f89>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>"] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq] 2 [cond let* and let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if] 1 [progn let* "#<lambda 0x7150948aeee6ed4>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>"] 1 [let* and let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let*] 2 [or org-em cond progn unwind-protect let let org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda 0x96d11493599b975>" funcall cons setq] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 2 [and and let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn] 1 [progn if let org-element--property org-element-parent setq if catch let org-element-property-inherited mapcar setq if let if org-get-tags] 1 [if let* if let* org-element-begin goto-char "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn] 1 [and if progn if if if while if let* save-restriction save-excursion let progn if progn let*] 1 [cond org-element-type let* and and let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar] 2 [cond let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0x732469c350dee93>" funcall setq progn] 1 [and let* org-element-begin < and or if if progn unwind-protect let progn if progn if progn] 2 [and let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction] 1 [cond progn unwind-protect let let org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda 0x96d11493599b975>" funcall cons setq if progn] 1 [mapconcat setq progn if let org-entry-get-with-inheritance setq progn "#<lambda -0x4a1d854da66468b>" funcall cons setq if progn if progn] 1 [setq let while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn] 1 [if let* org-element-contents-end eq if catch progn setq progn if progn if if if while if] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 2 [if let* if let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if] 2 [let* and let* org-element-begin < and or and if setq if if while if let* save-restriction] 1 [if let cond let* and and let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map] 1 [car eq if let cond let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or] 1 ["#<lambda 0x1536eff8750e81ec>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons] 1 [macroexp-macroexpand macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all] 2 [let* and let* org-element-begin < and or if if while if let* save-restriction save-excursion let progn] 1 [progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn] 1 [let org-element--property org-element-parent setq while catch progn setq progn if progn if if if while if] 1 [org--property-local-values let* "#<lambda 0xb1ad95e613b614c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>"] 1 [if let* if let* if progn if if if while if let* save-restriction save-excursion let progn] 1 [let cond let* and let* if progn if if if while if let* save-restriction save-excursion let] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function] 2 [cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq] 1 [let* and let* org-element-contents-end eq if while catch progn setq progn if progn if if if] 1 [not cond org-element-type let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not or and if while] 1 [and let* let let org-element--property org-element-parent setq while catch progn setq progn if progn if if] 1 [if not and while let org-element-lineage setq if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if] 1 ["#<lambda -0x14065ca9db8ff72c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons] 1 [if let* org-element-begin move-marker if let let* progn let* "#<lambda 0x16ccedc15db0c972>" funcall setq progn if while catch] 1 [setq progn if if if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map] 2 [let* and let* let and if let org-element--property setq let while let while catch let org-element-property-inherited] 1 [and let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>"] 1 [progn if progn if progn if if if while if let* save-restriction save-excursion let progn if] 3 [org-element--cache-key-less-p and or and if setq if if while if let* save-restriction save-excursion let progn if] 1 [car eq if let cond let* and and let* let let org-element--property org-element-parent setq while catch] 1 [or and if progn if if if while if let* save-restriction save-excursion let progn if progn] 1 [or set-buffer save-current-buffer not and if progn if progn if if if while if let* save-restriction] 2 [let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if] 1 [and save-current-buffer if progn if if if while if let* save-restriction save-excursion let progn if progn] 2 [while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn] 1 [if let cond let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p and or and if setq] 1 [cond org-element-type let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not or and if while if] 1 [let* if let* org-element-begin < and or if if progn unwind-protect let progn if progn if] 1 [cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x4a3dd47da66468b>" funcall cons setq] 1 [setq progn if progn if progn if if if while if let* save-restriction save-excursion let progn] 3 [let* and let* if progn if if if while if let* save-restriction save-excursion let progn if] 2 [not cond org-element-type let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0x1605bebda87bcaac>" funcall] 2 [while let org-element-lineage setq org--property-local-values let* "#<lambda 0x1605bebda87bcaac>" funcall setq progn if while catch let org-element-lineage-map let] 1 [if progn if progn if progn if if if while if let* save-restriction save-excursion let progn] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure] 1 [catch or org--property-get-separator mapconcat setq progn if let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if] 1 [if let org-element--property let* org--property-local-values let* "#<lambda 0xb1ae7182c269e4c>" funcall setq progn if while catch let org-element-lineage-map let] 1 [car eq if let cond let* and let* let and if let org-element--property let* org--property-local-values let*] 1 [org-em cond progn unwind-protect let let org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda 0x96d11493599b975>" funcall cons setq if] 1 [while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq] 1 [let let* progn let* "#<lambda 0xb964700eaebfa7e>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq] 1 [setq progn if let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if] 1 [eq save-current-buffer not and if progn if progn if if if while if let* save-restriction save-excursion] 2 [let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion let progn if] 1 [let* let let org-element--property setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn] 1 [car if let cond let* and let* org-element-begin = or if if if while if let*] 2 [cond org-element-type let* and let* org-element-begin goto-char "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if] 1 [if let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if] 1 [let cond let* and let* org-element-begin goto-char "#<lambda -0x4a1d854da66468b>" funcall cons setq if progn if progn if] 1 [if org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn] 1 [car-safe if progn if progn if progn if if if while if let* save-restriction save-excursion let] 1 [cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn] 1 [cond let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0x4324012350dff90>" funcall setq progn if while] 1 [progn if let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags] 1 [org-element-type let* and and let* let let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance] 1 [cdr car if let cond let* and let* and let* or org-element--cache-key org-element--cache-key-less-p not or and] 1 [let* if let* let let org-element--property setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn] 1 ["#<lambda 0xb1ad95e613b614c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons] 1 [and progn while let org-element--deferred-resolve let* catch while let progn if let org-element--property let* org--property-local-values let*] 1 [let* and let* org-element-begin move-marker if let let* progn let* "#<lambda 0xb1ad95a9b64f94c>" funcall setq progn if while] 1 [progn unwind-protect let let org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda 0x96d11493599b975>" funcall cons setq if progn if] 1 [or if progn if progn if if if while if let* save-restriction save-excursion let progn if] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 1 [let* if let* org-element-begin eq or and if progn if if if while if let* save-restriction] 1 [org-element-type if org-element-at-point org-element-lineage org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq] 1 [symbolp cond org-element-type let* if let* let let org-element--property setq let while let while catch let] 1 [and let* let and if let org-element--property setq let while let while catch let org-element-property-inherited mapcar] 2 [let* org-element-contents-end eq if catch progn setq progn if progn if if if while if let*] 1 [if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map save-excursion let* org-scan-tags setq] 1 [progn setq progn if progn if if if while if let* save-restriction save-excursion let progn if] 2 [cdr car if let cond let* and let* org-element-contents-end eq if while catch progn setq progn] 1 [eq if let cond let* and and let* let let org-element--property org-element-parent setq while catch progn] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 2 [let org-element--property let* org--property-local-values let* "#<lambda 0xb1ad962333db24c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance] 3 [let* if let* let let org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons] 1 [if let org-element--property org-element-parent setq while catch progn setq progn if progn if if if while] 1 [let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let*] 1 [if let* org-element-begin < and or and if setq if if while if let* save-restriction save-excursion] 1 [cdr car if let cond let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or] 1 [let* if let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let] 1 [if and and if catch "#<lambda -0x4a3dd47da66468b>" funcall cons setq if progn if progn if progn if] 1 [org--property-local-values let* "#<lambda -0x149924db1a44b60c>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>"] 1 [progn or progn apply org-element--deferred-resolve-once setq progn while let org-element--deferred-resolve let* catch while let progn if] 1 [progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn if if if while if] 1 [let* and let* set-buffer save-current-buffer org-element--substring apply org-element--deferred-resolve-once setq progn while let org-element--deferred-resolve let* catch while] 1 [org-element-type let* and let* org-element-begin goto-char "#<lambda 0x96d11493599b975>" funcall cons setq if progn if progn if progn] 1 [and let* let let org-element--property org-element-parent setq if catch let org-element-property-inherited mapcar setq if let if] 2 [or if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn] 1 [< and or if if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map] 1 [if let cond let* and let* if progn if if if while if let* save-restriction save-excursion] 1 [and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if let* save-restriction] 1 [with-no-warnings if progn if or let cond let* if let* let let org-element--property let* org--property-local-values let*] 2 [eq if let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall] 1 [or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction save-excursion let] 1 [setq if if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map save-excursion let*] 1 [if let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if] 1 [cdr car if let cond let* and let* let and if let org-element--property let* org--property-local-values let*] 2 [let let org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn] 1 [org-element-begin < and or if if while if let* save-restriction save-excursion let progn if progn let*] 1 [symbolp cond org-element-type let* and and let* let let org-element--property org-element-parent setq if catch let org-element-property-inherited] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all] 1 [setq progn if while if let* save-restriction save-excursion let progn if progn let* org-element-cache-map save-excursion let*] 1 [let let org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda -0x4a1d854da66468b>" funcall cons setq if progn if progn if] 1 [cond let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let*] 1 [car if let cond let* and and let* let let org-element--property org-element-parent setq if catch let] 1 [cond org-element-type let* and and let* let let org-element--property org-element-parent setq while catch progn setq progn] 1 [symbolp cond org-element-type memq if not and while let org-element-lineage org-element--property mapcar org--get-local-tags let if org-get-tags] 1 [cond let* and and let* let let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq] 1 [if "#<lambda 0x111f420160>" mapcar apply setq let org-agenda-files setq catch let* org-search-view let cond "#<lambda 0xa22d19e5a1280>" funcall let] 1 [car eq if let cond let* and let* org-element-contents-end eq if while catch progn setq progn] 1 [save-current-buffer eq and save-current-buffer if progn if if if while if let* save-restriction save-excursion let progn] 1 [org-element-type let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let*] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 1 [org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0x16f8ea36a6919182>" funcall cons setq if progn if] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 2 [cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x16f8ea36a6919182>" funcall cons setq if progn if progn if] 1 [setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x16f8ea36a6919182>" funcall cons setq if] 1 [org-element-type if org-element-at-point org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x16f8ea36a6919182>" funcall cons setq if progn if progn] 1 [macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 2 [let* "#<lambda -0xa930c4954c04121>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x16f8ea36a6919182>" funcall] 1 [progn if let org-element--property let* org--property-local-values let* "#<lambda -0xa930c4954c04121>" funcall setq progn if while catch let org-element-lineage-map] 1 [cond org-element-type let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion let] 1 [let cond let* and let* org-element-begin < and or if if progn unwind-protect let progn if] 1 [org-element-type let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction] 1 [while let while catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall] 1 [let* "#<lambda 0x63e0d6dbca82d7d>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses] 1 [and progn let and if let org-element--property setq let while let while catch let org-element-property-inherited mapcar] 1 [eq if let cond let* and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p and or and if] 1 [if let* if let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0xa5deeb8aec004d7>" funcall setq progn] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv] 2 [let* if let* let and if let org-element--property setq let while let while catch let org-element-property-inherited] 1 [catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x10ee610e0eb6c577>" funcall cons setq if] 1 [let* if let* let let org-element--property setq progn "#<lambda 0x10ee610e0eb6c577>" funcall cons setq if progn if progn] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all] 1 [if let cond let* and let* let and if let org-element--property setq let while let while] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance] 1 [setq save-restriction save-excursion save-current-buffer if catch while catch let* org-tags-view let cond "#<lambda 0xa22d19e5a1280>" funcall let eval] 1 [or let cond let* if let* let let org-element--property setq progn "#<lambda -0xc023aefcf98472a>" funcall cons setq if] 1 [cond let* and and let* let let org-element--property org-element-parent setq if catch let org-element-property-inherited mapcar setq] 1 [if let cond let* and let* let and if let org-element--property let* org--property-local-values let* "#<lambda 0x7358b742cb1aa55>" funcall] 1 [cond org-element-type memq if not and while let org-element-lineage setq org--property-local-values let* "#<lambda 0x7358b742cb1aa55>" funcall setq progn] 1 [prog1 car-safe if if setq if if while if let* save-restriction save-excursion let progn if progn] 1 [progn org-element--cache-key org-element--cache-key-less-p and or and if setq if if while if let* save-restriction save-excursion let] 1 [cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x1edf3a6d338d2280>"] 1 [let* "#<lambda 0x7358b742cb1aa55>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x1edf3a6d338d2280>" funcall] 1 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all] 1 [if let* if let* let and if let org-element--property setq let while let while catch let] 1 [let org-agenda-entry-get-agenda-timestamp setq progn progn if "#<lambda -0x4a3dd47da66468b>" funcall cons setq if progn if progn if progn] 1 [let* let let org-element--property let* org--property-local-values let* "#<lambda -0x149924db1a44b60c>" funcall setq progn if while catch let org-element-lineage-map] 1 [if let* save-current-buffer org-element--cache-find and let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case if setq let save-restriction] 1 [not if if progn unwind-protect let org-get-priority setq progn let* cond progn if catch "#<lambda 0x5c35651e1469da9>" funcall] 2 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all] 2 [macroexp-macroexpand macroexp--expand-all macroexp--all-forms macroexp--all-clauses macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 1 [and if let org-element--property org-element-parent setq while catch let org-element-property-inherited mapcar setq if let if org-get-tags] 1 [org-entry-get-with-inheritance setq progn "#<lambda 0x5c35651e1469da9>" funcall cons setq if progn if progn if progn if if if] 1 [if let org-element--property setq progn "#<lambda 0x5c35651e1469da9>" funcall cons setq if progn if progn if progn if] 1 [if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0xf46744193748dec>" funcall cons setq if progn if] 1 [macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms] 1 [cconv-analyze-form cconv-fv cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn if] 1 [let* and let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion let] 1 [and progn if let org-element--property org-element-parent setq while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x51481c881a7febd>"] 1 [if let* let let* save-restriction save-excursion save-current-buffer catch org-element--parse-to setq progn if progn setq progn if] 1 [org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x51481c881a7febd>" funcall cons setq if progn if progn if progn if] 1 [let* and let* org-element-begin < and if progn if if if while if let* save-restriction save-excursion] 1 [cconv-make-interpreted-closure function org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x1f21c6f5334bc1c6>" funcall cons setq if progn if progn if] 1 [cond let* and let* let and if let org-element--property setq let while let while catch let] 1 [let* progn unwind-protect let let* org-agenda-format-item setq progn let* cond progn if catch "#<lambda 0x1798f986fc925288>" funcall cons] 1 [progn if or let cond let* if let* let let org-element--property let* org--property-local-values let* "#<lambda 0x7150948aeee6ed4>" funcall] 1 [and or and if setq if if while if let* save-restriction save-excursion let progn if progn] 1 [if org-get-tags setq progn "#<lambda 0x14a70ef11391abff>" funcall cons setq if progn if progn if progn if if] 1 [and let* org-element-begin let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction save-excursion] 1 [if catch "#<lambda 0x14a70ef11391abff>" funcall cons setq if progn if progn if progn if if if while] 1 [setq if catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda 0x14a70ef11391abff>" funcall cons] 1 [if let* if let* and let* or org-element--cache-key org-element--cache-key-less-p and or and if setq if if] 1 [cond org-element-type let* and let* org-element-begin < and if progn if if if while if let*] 1 [not and if org-element-lineage org-element--property mapcar org--get-local-tags let if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq] 1 [org-element--property org-element-parent setq if catch let org-element-property-inherited mapcar setq if let if org-get-tags setq progn "#<lambda -0x4a1d854da66468b>"] 1 [not and while let org-element-lineage setq if org-get-tags setq progn "#<lambda 0x96d11493599b975>" funcall cons setq if progn] 1 [org--property-local-values let* "#<lambda 0x6318b51350c6d91>" funcall setq progn if while catch let org-element-lineage-map let org-entry-get-with-inheritance setq progn "#<lambda -0x16c361cb526715a8>"] 1 [cond org-element-type let* and let* org-element-begin move-marker if let let* progn let* "#<lambda 0x4318b51350c2c93>" funcall setq progn] 1 [if let* if let* and let* or org-element--cache-key org-element--cache-key-less-p not and or if if while if] 1 [let* and let* and let* or org-element--cache-key org-element--cache-key-less-p not or and if while if let* save-restriction] 1 [setq if while let org-plist-delete apply if concat setq progn if progn if let if let] 1 [let let* let* org-agenda-run-series eval if let* org-agenda-redo funcall-interactively command-execute nil nil nil nil nil nil] 1 [while save-excursion progn unwind-protect let let org-agenda-align-tags if save-excursion let if org-agenda-finalize "#<lambda 0x60fae12>" funcall let eval] 1 [while let save-excursion org-agenda-fontify-priorities progn if save-excursion let if org-agenda-finalize "#<lambda 0x60fae12>" funcall let eval let* progn] 2 [save-current-buffer catch org-element--parse-to condition-case if setq let save-restriction save-excursion save-excursion let if org-element-at-point org-element-lineage setq if] 1 [let cond let* and let* org-element-end or let let* save-restriction save-excursion save-current-buffer catch org-element--parse-to condition-case if] 1 [completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil nil] 14 [read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil nil nil] 93 [tooltip-hide completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil] 1 [funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 1 [funcall-interactively command-execute execute-extended-command funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 1 [Automatic\ GC] 1952)) (26026 34543 272280 0) nil]

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-19 14:50       ` dark.key8799
@ 2024-01-19 15:15         ` Ihor Radchenko
  2024-01-22  6:09           ` dark.key8799
  0 siblings, 1 reply; 14+ messages in thread
From: Ihor Radchenko @ 2024-01-19 15:15 UTC (permalink / raw)
  To: dark.key8799; +Cc: emacs-orgmode

dark.key8799@151e.ai writes:

> On Fri, Jan 19, 2024, at 22:00, Ihor Radchenko wrote:
>> May you open org-agenda.el and org-element.el and M-x eval-buffer in
>> these two files before generating the report? It should make the results
>> more readable.
>
> There you go, there's still some lambdas but more of the calls are explicit.

Thanks!
I think that the missing lambdas should come from org.el.
So, may you M-x eval-buffer org-agenda.el, org-element.el, and org.el.

And do the same in Org 9.6. (there are also cryptic lambdas there in the
profile)

(In theory, you should not need to do this M-x eval-buffer trick if you
run Org mode from "make repro" command line in the git repo. Not sure if
it is easier for you or not)

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-19 15:15         ` Ihor Radchenko
@ 2024-01-22  6:09           ` dark.key8799
  2024-01-22 12:05             ` Ihor Radchenko
  0 siblings, 1 reply; 14+ messages in thread
From: dark.key8799 @ 2024-01-22  6:09 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

On Fri, Jan 19, 2024, at 23:15, Ihor Radchenko wrote:
> I think that the missing lambdas should come from org.el.
> So, may you M-x eval-buffer org-agenda.el, org-element.el, and org.el.
>
> And do the same in Org 9.6. (there are also cryptic lambdas there in the
> profile)
>
> (In theory, you should not need to do this M-x eval-buffer trick if you
> run Org mode from "make repro" command line in the git repo. Not sure if
> it is easier for you or not)

Well bad news then good news.

Either by evaluating buffers as requested or by trying to use "make repro" (which I couldn't make work), I was still getting cryptic lambdas.

I ended reinstalling emacs from scratch and the slowness disappeared. So I guess some native-compiled files were not updated when I switched to Org 9.7 (even though I had nuked the straight folder). A profiler report of `org-agenda-redo' is also clean of lambdas (it does have #<compiled -...> statements but the call tree is decently readable).

Side note about "make repro": it wouldn't load org from the repo. Trying to understand why, running "make autoloads", I was expecting (perhaps wrongly) that `org-version.el' and `org-loaddefs.el' would be generated in the repo directory/sub-directories but that never happened (and make didn't output any error).
Launching "emacs -Q -l init.el" with init.el just having adding the repo to `load-path' and requiring org would fail on missing loaddefs.

Is there a standard procedure to 1/ follow when switching org version and/or 2/ clean all byte-compiled/native-compiled files in this kind of situation?

-- 
Alexandre Avanian


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-22  6:09           ` dark.key8799
@ 2024-01-22 12:05             ` Ihor Radchenko
  2024-01-22 15:36               ` dark.key8799
  0 siblings, 1 reply; 14+ messages in thread
From: Ihor Radchenko @ 2024-01-22 12:05 UTC (permalink / raw)
  To: dark.key8799; +Cc: emacs-orgmode

dark.key8799@151e.ai writes:

> Side note about "make repro": it wouldn't load org from the repo.
> Trying to understand why, running "make autoloads", I was expecting
> (perhaps wrongly) that `org-version.el' and `org-loaddefs.el' would be
> generated in the repo directory/sub-directories but that never
> happened (and make didn't output any error). Launching "emacs -Q -l
> init.el" with init.el just having adding the repo to `load-path' and
> requiring org would fail on missing loaddefs.

This is very strange. We try hard to use only GNU make machinery + Emacs
there. May it help to remove local.mk from org git folder?

> Is there a standard procedure to 1/ follow when switching org version and/or 2/ clean all byte-compiled/native-compiled files in this kind of situation?

This is normally not required - Emacs package manager should take care
about this. Although, if you have problems with make autoloads and use
Org mode from git folder, I don't know what happens.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-22 12:05             ` Ihor Radchenko
@ 2024-01-22 15:36               ` dark.key8799
  2024-01-22 19:57                 ` Ihor Radchenko
  0 siblings, 1 reply; 14+ messages in thread
From: dark.key8799 @ 2024-01-22 15:36 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode



On Mon, Jan 22, 2024, at 20:05, Ihor Radchenko wrote:
> This is very strange. We try hard to use only GNU make machinery + Emacs
> there. May it help to remove local.mk from org git folder?

Ok, I didn't do that but recloned the repo manually (I was working from a 
clone made by straight.el) and the org-version.el and org-loaddefs.el are
now properly generating.

make repro still can't load the correct org because make apparently
launches emacs from my $HOME instead of the repo directory (I tested
manually that `default-directory' is correct when calling emacs -Q) so
I'm think make is reverting to $HOME when launching emacs and I have no
idea why.

> This is normally not required - Emacs package manager should take care
> about this. Although, if you have problems with make autoloads and use
> Org mode from git folder, I don't know what happens.

I'm using straight.el. Even though I nuked the build and repo org folders
from straight, the above (about git manual cloning) makes me think it's
interfering somehow.

Anyway, all that seems far from org, thanks for pointing me in the right
direction.

-- 
Alexandre Avanian


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-22 15:36               ` dark.key8799
@ 2024-01-22 19:57                 ` Ihor Radchenko
  2024-01-23  2:35                   ` dark.key8799
  0 siblings, 1 reply; 14+ messages in thread
From: Ihor Radchenko @ 2024-01-22 19:57 UTC (permalink / raw)
  To: dark.key8799; +Cc: emacs-orgmode

dark.key8799@151e.ai writes:

> make repro still can't load the correct org because make apparently
> launches emacs from my $HOME instead of the repo directory (I tested
> manually that `default-directory' is correct when calling emacs -Q) so
> I'm think make is reverting to $HOME when launching emacs and I have no
> idea why.

May you post the output of

make -d repro

?

>> This is normally not required - Emacs package manager should take care
>> about this. Although, if you have problems with make autoloads and use
>> Org mode from git folder, I don't know what happens.
>
> I'm using straight.el. Even though I nuked the build and repo org folders
> from straight, the above (about git manual cloning) makes me think it's
> interfering somehow.

There was a bug in straight.el + the latest Org -
https://github.com/radian-software/straight.el/issues/1107
I am not sure if the fix landed on stable branch or it is still on the
develop.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-22 19:57                 ` Ihor Radchenko
@ 2024-01-23  2:35                   ` dark.key8799
  2024-01-24 15:02                     ` Ihor Radchenko
  0 siblings, 1 reply; 14+ messages in thread
From: dark.key8799 @ 2024-01-23  2:35 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 530 bytes --]

On Tue, Jan 23, 2024, at 03:57, Ihor Radchenko wrote:
> May you post the output of

There you go, I infer emacs is launched from $HOME since the two evals in the command launching emacs lead to `load-path' being prepended with "~/lisp" and "~/testing".

> There was a bug in straight.el + the latest Org -
> https://github.com/radian-software/straight.el/issues/1107
> I am not sure if the fix landed on stable branch or it is still on the
> develop.

The fix is on master and my install was refreshed since

-- 
Alexandre Avanian

[-- Attachment #2: repro-log --]
[-- Type: application/octet-stream, Size: 248466 bytes --]

GNU Make 4.4.1
Built for aarch64-apple-darwin22.3.0
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Reading makefile 'Makefile'...
Reading makefile 'mk/default.mk' (search path) (no ~ expansion)...
Reading makefile 'local.mk' (search path) (don't care) (no ~ expansion)...
Reading makefile 'mk/targets.mk' (search path) (no ~ expansion)...
Updating makefiles....
 Considering target file 'Makefile'.
  Looking for an implicit rule for 'Makefile'.
   Trying pattern rule '%: %.o' with stem 'Makefile'.
Directory . cache invalidated (count 1 != command 7)
   Trying implicit prerequisite 'Makefile.o'.
   Not found 'Makefile.o'.
   Trying pattern rule '%: %.c' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.c'.
   Not found 'Makefile.c'.
   Trying pattern rule '%: %.cc' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.cc'.
   Not found 'Makefile.cc'.
   Trying pattern rule '%: %.C' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.C'.
   Not found 'Makefile.C'.
   Trying pattern rule '%: %.cpp' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.cpp'.
   Not found 'Makefile.cpp'.
   Trying pattern rule '%: %.p' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.p'.
   Not found 'Makefile.p'.
   Trying pattern rule '%: %.f' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.f'.
   Not found 'Makefile.f'.
   Trying pattern rule '%: %.F' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.F'.
   Not found 'Makefile.F'.
   Trying pattern rule '%: %.m' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.m'.
   Not found 'Makefile.m'.
   Trying pattern rule '%: %.r' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.r'.
   Not found 'Makefile.r'.
   Trying pattern rule '%: %.s' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.s'.
   Not found 'Makefile.s'.
   Trying pattern rule '%: %.S' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.S'.
   Not found 'Makefile.S'.
   Trying pattern rule '%: %.mod' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.mod'.
   Not found 'Makefile.mod'.
   Trying pattern rule '%: %.sh' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.sh'.
   Not found 'Makefile.sh'.
   Trying pattern rule '%:: %,v' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile,v'.
   Not found 'Makefile,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'Makefile'.
   Trying implicit prerequisite 'RCS/Makefile,v'.
   Not found 'RCS/Makefile,v'.
   Trying pattern rule '%:: RCS/%' with stem 'Makefile'.
   Trying implicit prerequisite 'RCS/Makefile'.
   Not found 'RCS/Makefile'.
   Trying pattern rule '%:: s.%' with stem 'Makefile'.
   Trying implicit prerequisite 's.Makefile'.
   Not found 's.Makefile'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile'.
   Trying implicit prerequisite 'SCCS/s.Makefile'.
   Not found 'SCCS/s.Makefile'.
   Trying harder.
   Trying pattern rule '%: %.o' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.o'.
   Looking for a rule with intermediate file 'Makefile.o'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Trying pattern rule '%.o: %.c' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.c'.
    Not found 'Makefile.c'.
    Trying pattern rule '%.o: %.cc' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.cc'.
    Not found 'Makefile.cc'.
    Trying pattern rule '%.o: %.C' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.C'.
    Not found 'Makefile.C'.
    Trying pattern rule '%.o: %.cpp' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.cpp'.
    Not found 'Makefile.cpp'.
    Trying pattern rule '%.o: %.p' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.p'.
    Not found 'Makefile.p'.
    Trying pattern rule '%.o: %.f' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.f'.
    Not found 'Makefile.f'.
    Trying pattern rule '%.o: %.F' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.F'.
    Not found 'Makefile.F'.
    Trying pattern rule '%.o: %.m' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.m'.
    Not found 'Makefile.m'.
    Trying pattern rule '%.o: %.r' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.r'.
    Not found 'Makefile.r'.
    Trying pattern rule '%.o: %.s' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.s'.
    Not found 'Makefile.s'.
    Trying pattern rule '%.o: %.S' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.S'.
    Not found 'Makefile.S'.
    Trying pattern rule '%.o: %.mod' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.mod'.
    Not found 'Makefile.mod'.
    Trying pattern rule '%:: %,v' with stem 'Makefile.o'.
    Trying implicit prerequisite 'Makefile.o,v'.
    Not found 'Makefile.o,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.o'.
    Trying implicit prerequisite 'RCS/Makefile.o,v'.
    Not found 'RCS/Makefile.o,v'.
    Trying pattern rule '%:: RCS/%' with stem 'Makefile.o'.
    Trying implicit prerequisite 'RCS/Makefile.o'.
    Not found 'RCS/Makefile.o'.
    Trying pattern rule '%:: s.%' with stem 'Makefile.o'.
    Trying implicit prerequisite 's.Makefile.o'.
    Not found 's.Makefile.o'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.o'.
    Trying implicit prerequisite 'SCCS/s.Makefile.o'.
    Not found 'SCCS/s.Makefile.o'.
    Trying harder.
    Trying pattern rule '%.o: %.c' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.c'.
    Looking for a rule with intermediate file 'Makefile.c'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.c'.
     Trying pattern rule '%.c: %.y' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.y'.
     Not found 'Makefile.y'.
     Trying pattern rule '%.c: %.l' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.l'.
     Not found 'Makefile.l'.
     Trying pattern rule '%.c: %.w' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.w'.
     Not found 'Makefile.w'.
     Trying pattern rule '%.c: %.w %.ch' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.w'.
     Not found 'Makefile.w'.
     Trying pattern rule '%:: %,v' with stem 'Makefile.c'.
     Trying implicit prerequisite 'Makefile.c,v'.
     Not found 'Makefile.c,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.c'.
     Trying implicit prerequisite 'RCS/Makefile.c,v'.
     Not found 'RCS/Makefile.c,v'.
     Trying pattern rule '%:: RCS/%' with stem 'Makefile.c'.
     Trying implicit prerequisite 'RCS/Makefile.c'.
     Not found 'RCS/Makefile.c'.
     Trying pattern rule '%:: s.%' with stem 'Makefile.c'.
     Trying implicit prerequisite 's.Makefile.c'.
     Not found 's.Makefile.c'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.c'.
     Trying implicit prerequisite 'SCCS/s.Makefile.c'.
     Not found 'SCCS/s.Makefile.c'.
     Trying harder.
     Trying pattern rule '%.c: %.y' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.y'.
     Looking for a rule with intermediate file 'Makefile.y'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.y'.
      Trying pattern rule '%:: %,v' with stem 'Makefile.y'.
      Trying implicit prerequisite 'Makefile.y,v'.
      Not found 'Makefile.y,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.y'.
      Trying implicit prerequisite 'RCS/Makefile.y,v'.
      Not found 'RCS/Makefile.y,v'.
      Trying pattern rule '%:: RCS/%' with stem 'Makefile.y'.
      Trying implicit prerequisite 'RCS/Makefile.y'.
      Not found 'RCS/Makefile.y'.
      Trying pattern rule '%:: s.%' with stem 'Makefile.y'.
      Trying implicit prerequisite 's.Makefile.y'.
      Not found 's.Makefile.y'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.y'.
      Trying implicit prerequisite 'SCCS/s.Makefile.y'.
      Not found 'SCCS/s.Makefile.y'.
      Trying harder.
     No implicit rule found for 'Makefile.y'.
     Rejecting rule '%.c: %.y' due to impossible prerequisite 'Makefile.y'.
     Trying pattern rule '%.c: %.l' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.l'.
     Looking for a rule with intermediate file 'Makefile.l'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.l'.
      Trying pattern rule '%:: %,v' with stem 'Makefile.l'.
      Trying implicit prerequisite 'Makefile.l,v'.
      Not found 'Makefile.l,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.l'.
      Trying implicit prerequisite 'RCS/Makefile.l,v'.
      Not found 'RCS/Makefile.l,v'.
      Trying pattern rule '%:: RCS/%' with stem 'Makefile.l'.
      Trying implicit prerequisite 'RCS/Makefile.l'.
      Not found 'RCS/Makefile.l'.
      Trying pattern rule '%:: s.%' with stem 'Makefile.l'.
      Trying implicit prerequisite 's.Makefile.l'.
      Not found 's.Makefile.l'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.l'.
      Trying implicit prerequisite 'SCCS/s.Makefile.l'.
      Not found 'SCCS/s.Makefile.l'.
      Trying harder.
     No implicit rule found for 'Makefile.l'.
     Rejecting rule '%.c: %.l' due to impossible prerequisite 'Makefile.l'.
     Trying pattern rule '%.c: %.w' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.w'.
     Looking for a rule with intermediate file 'Makefile.w'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.w'.
      Trying pattern rule '%:: %,v' with stem 'Makefile.w'.
      Trying implicit prerequisite 'Makefile.w,v'.
      Not found 'Makefile.w,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.w'.
      Trying implicit prerequisite 'RCS/Makefile.w,v'.
      Not found 'RCS/Makefile.w,v'.
      Trying pattern rule '%:: RCS/%' with stem 'Makefile.w'.
      Trying implicit prerequisite 'RCS/Makefile.w'.
      Not found 'RCS/Makefile.w'.
      Trying pattern rule '%:: s.%' with stem 'Makefile.w'.
      Trying implicit prerequisite 's.Makefile.w'.
      Not found 's.Makefile.w'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.w'.
      Trying implicit prerequisite 'SCCS/s.Makefile.w'.
      Not found 'SCCS/s.Makefile.w'.
      Trying harder.
     No implicit rule found for 'Makefile.w'.
     Rejecting rule '%.c: %.w' due to impossible prerequisite 'Makefile.w'.
     Trying pattern rule '%.c: %.w %.ch' with stem 'Makefile'.
     Rejecting rule '%.c: %.w %.ch' due to impossible implicit prerequisite 'Makefile.w'.
    No implicit rule found for 'Makefile.c'.
    Rejecting rule '%.o: %.c' due to impossible prerequisite 'Makefile.c'.
    Trying pattern rule '%.o: %.cc' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.cc'.
    Looking for a rule with intermediate file 'Makefile.cc'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.cc'.
     Trying pattern rule '%:: %,v' with stem 'Makefile.cc'.
     Trying implicit prerequisite 'Makefile.cc,v'.
     Not found 'Makefile.cc,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.cc'.
     Trying implicit prerequisite 'RCS/Makefile.cc,v'.
     Not found 'RCS/Makefile.cc,v'.
     Trying pattern rule '%:: RCS/%' with stem 'Makefile.cc'.
     Trying implicit prerequisite 'RCS/Makefile.cc'.
     Not found 'RCS/Makefile.cc'.
     Trying pattern rule '%:: s.%' with stem 'Makefile.cc'.
     Trying implicit prerequisite 's.Makefile.cc'.
     Not found 's.Makefile.cc'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.cc'.
     Trying implicit prerequisite 'SCCS/s.Makefile.cc'.
     Not found 'SCCS/s.Makefile.cc'.
     Trying harder.
    No implicit rule found for 'Makefile.cc'.
    Rejecting rule '%.o: %.cc' due to impossible prerequisite 'Makefile.cc'.
    Trying pattern rule '%.o: %.C' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.C'.
    Looking for a rule with intermediate file 'Makefile.C'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.C'.
     Trying pattern rule '%:: %,v' with stem 'Makefile.C'.
     Trying implicit prerequisite 'Makefile.C,v'.
     Not found 'Makefile.C,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.C'.
     Trying implicit prerequisite 'RCS/Makefile.C,v'.
     Not found 'RCS/Makefile.C,v'.
     Trying pattern rule '%:: RCS/%' with stem 'Makefile.C'.
     Trying implicit prerequisite 'RCS/Makefile.C'.
     Not found 'RCS/Makefile.C'.
     Trying pattern rule '%:: s.%' with stem 'Makefile.C'.
     Trying implicit prerequisite 's.Makefile.C'.
     Not found 's.Makefile.C'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.C'.
     Trying implicit prerequisite 'SCCS/s.Makefile.C'.
     Not found 'SCCS/s.Makefile.C'.
     Trying harder.
    No implicit rule found for 'Makefile.C'.
    Rejecting rule '%.o: %.C' due to impossible prerequisite 'Makefile.C'.
    Trying pattern rule '%.o: %.cpp' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.cpp'.
    Looking for a rule with intermediate file 'Makefile.cpp'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.cpp'.
     Trying pattern rule '%:: %,v' with stem 'Makefile.cpp'.
     Trying implicit prerequisite 'Makefile.cpp,v'.
     Not found 'Makefile.cpp,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.cpp'.
     Trying implicit prerequisite 'RCS/Makefile.cpp,v'.
     Not found 'RCS/Makefile.cpp,v'.
     Trying pattern rule '%:: RCS/%' with stem 'Makefile.cpp'.
     Trying implicit prerequisite 'RCS/Makefile.cpp'.
     Not found 'RCS/Makefile.cpp'.
     Trying pattern rule '%:: s.%' with stem 'Makefile.cpp'.
     Trying implicit prerequisite 's.Makefile.cpp'.
     Not found 's.Makefile.cpp'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.cpp'.
     Trying implicit prerequisite 'SCCS/s.Makefile.cpp'.
     Not found 'SCCS/s.Makefile.cpp'.
     Trying harder.
    No implicit rule found for 'Makefile.cpp'.
    Rejecting rule '%.o: %.cpp' due to impossible prerequisite 'Makefile.cpp'.
    Trying pattern rule '%.o: %.p' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.p'.
    Looking for a rule with intermediate file 'Makefile.p'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.p'.
     Trying pattern rule '%.p: %.web' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.web'.
     Not found 'Makefile.web'.
     Trying pattern rule '%:: %,v' with stem 'Makefile.p'.
     Trying implicit prerequisite 'Makefile.p,v'.
     Not found 'Makefile.p,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.p'.
     Trying implicit prerequisite 'RCS/Makefile.p,v'.
     Not found 'RCS/Makefile.p,v'.
     Trying pattern rule '%:: RCS/%' with stem 'Makefile.p'.
     Trying implicit prerequisite 'RCS/Makefile.p'.
     Not found 'RCS/Makefile.p'.
     Trying pattern rule '%:: s.%' with stem 'Makefile.p'.
     Trying implicit prerequisite 's.Makefile.p'.
     Not found 's.Makefile.p'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.p'.
     Trying implicit prerequisite 'SCCS/s.Makefile.p'.
     Not found 'SCCS/s.Makefile.p'.
     Trying harder.
     Trying pattern rule '%.p: %.web' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.web'.
     Looking for a rule with intermediate file 'Makefile.web'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.p'.
      Avoiding implicit rule recursion for rule '%.p: %.web'.
      Trying pattern rule '%:: %,v' with stem 'Makefile.web'.
      Trying implicit prerequisite 'Makefile.web,v'.
      Not found 'Makefile.web,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.web'.
      Trying implicit prerequisite 'RCS/Makefile.web,v'.
      Not found 'RCS/Makefile.web,v'.
      Trying pattern rule '%:: RCS/%' with stem 'Makefile.web'.
      Trying implicit prerequisite 'RCS/Makefile.web'.
      Not found 'RCS/Makefile.web'.
      Trying pattern rule '%:: s.%' with stem 'Makefile.web'.
      Trying implicit prerequisite 's.Makefile.web'.
      Not found 's.Makefile.web'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.web'.
      Trying implicit prerequisite 'SCCS/s.Makefile.web'.
      Not found 'SCCS/s.Makefile.web'.
      Trying harder.
     No implicit rule found for 'Makefile.web'.
     Rejecting rule '%.p: %.web' due to impossible prerequisite 'Makefile.web'.
    No implicit rule found for 'Makefile.p'.
    Rejecting rule '%.o: %.p' due to impossible prerequisite 'Makefile.p'.
    Trying pattern rule '%.o: %.f' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.f'.
    Looking for a rule with intermediate file 'Makefile.f'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.f'.
     Trying pattern rule '%.f: %.F' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.F'.
     Not found 'Makefile.F'.
     Trying pattern rule '%.f: %.r' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.r'.
     Not found 'Makefile.r'.
     Trying pattern rule '%:: %,v' with stem 'Makefile.f'.
     Trying implicit prerequisite 'Makefile.f,v'.
     Not found 'Makefile.f,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.f'.
     Trying implicit prerequisite 'RCS/Makefile.f,v'.
     Not found 'RCS/Makefile.f,v'.
     Trying pattern rule '%:: RCS/%' with stem 'Makefile.f'.
     Trying implicit prerequisite 'RCS/Makefile.f'.
     Not found 'RCS/Makefile.f'.
     Trying pattern rule '%:: s.%' with stem 'Makefile.f'.
     Trying implicit prerequisite 's.Makefile.f'.
     Not found 's.Makefile.f'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.f'.
     Trying implicit prerequisite 'SCCS/s.Makefile.f'.
     Not found 'SCCS/s.Makefile.f'.
     Trying harder.
     Trying pattern rule '%.f: %.F' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.F'.
     Looking for a rule with intermediate file 'Makefile.F'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.f'.
      Avoiding implicit rule recursion for rule '%.f: %.F'.
      Trying pattern rule '%:: %,v' with stem 'Makefile.F'.
      Trying implicit prerequisite 'Makefile.F,v'.
      Not found 'Makefile.F,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.F'.
      Trying implicit prerequisite 'RCS/Makefile.F,v'.
      Not found 'RCS/Makefile.F,v'.
      Trying pattern rule '%:: RCS/%' with stem 'Makefile.F'.
      Trying implicit prerequisite 'RCS/Makefile.F'.
      Not found 'RCS/Makefile.F'.
      Trying pattern rule '%:: s.%' with stem 'Makefile.F'.
      Trying implicit prerequisite 's.Makefile.F'.
      Not found 's.Makefile.F'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.F'.
      Trying implicit prerequisite 'SCCS/s.Makefile.F'.
      Not found 'SCCS/s.Makefile.F'.
      Trying harder.
     No implicit rule found for 'Makefile.F'.
     Rejecting rule '%.f: %.F' due to impossible prerequisite 'Makefile.F'.
     Trying pattern rule '%.f: %.r' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.r'.
     Looking for a rule with intermediate file 'Makefile.r'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.f'.
      Avoiding implicit rule recursion for rule '%.f: %.r'.
      Trying pattern rule '%.r: %.l' with stem 'Makefile'.
      Rejecting rule '%.r: %.l' due to impossible implicit prerequisite 'Makefile.l'.
      Trying pattern rule '%:: %,v' with stem 'Makefile.r'.
      Trying implicit prerequisite 'Makefile.r,v'.
      Not found 'Makefile.r,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.r'.
      Trying implicit prerequisite 'RCS/Makefile.r,v'.
      Not found 'RCS/Makefile.r,v'.
      Trying pattern rule '%:: RCS/%' with stem 'Makefile.r'.
      Trying implicit prerequisite 'RCS/Makefile.r'.
      Not found 'RCS/Makefile.r'.
      Trying pattern rule '%:: s.%' with stem 'Makefile.r'.
      Trying implicit prerequisite 's.Makefile.r'.
      Not found 's.Makefile.r'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.r'.
      Trying implicit prerequisite 'SCCS/s.Makefile.r'.
      Not found 'SCCS/s.Makefile.r'.
      Trying harder.
     No implicit rule found for 'Makefile.r'.
     Rejecting rule '%.f: %.r' due to impossible prerequisite 'Makefile.r'.
    No implicit rule found for 'Makefile.f'.
    Rejecting rule '%.o: %.f' due to impossible prerequisite 'Makefile.f'.
    Trying pattern rule '%.o: %.F' with stem 'Makefile'.
    Rejecting rule '%.o: %.F' due to impossible implicit prerequisite 'Makefile.F'.
    Trying pattern rule '%.o: %.m' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.m'.
    Looking for a rule with intermediate file 'Makefile.m'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.m'.
     Trying pattern rule '%.m: %.ym' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.ym'.
     Not found 'Makefile.ym'.
     Trying pattern rule '%:: %,v' with stem 'Makefile.m'.
     Trying implicit prerequisite 'Makefile.m,v'.
     Not found 'Makefile.m,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.m'.
     Trying implicit prerequisite 'RCS/Makefile.m,v'.
     Not found 'RCS/Makefile.m,v'.
     Trying pattern rule '%:: RCS/%' with stem 'Makefile.m'.
     Trying implicit prerequisite 'RCS/Makefile.m'.
     Not found 'RCS/Makefile.m'.
     Trying pattern rule '%:: s.%' with stem 'Makefile.m'.
     Trying implicit prerequisite 's.Makefile.m'.
     Not found 's.Makefile.m'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.m'.
     Trying implicit prerequisite 'SCCS/s.Makefile.m'.
     Not found 'SCCS/s.Makefile.m'.
     Trying harder.
     Trying pattern rule '%.m: %.ym' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.ym'.
     Looking for a rule with intermediate file 'Makefile.ym'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.m'.
      Avoiding implicit rule recursion for rule '%.m: %.ym'.
      Trying pattern rule '%:: %,v' with stem 'Makefile.ym'.
      Trying implicit prerequisite 'Makefile.ym,v'.
      Not found 'Makefile.ym,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.ym'.
      Trying implicit prerequisite 'RCS/Makefile.ym,v'.
      Not found 'RCS/Makefile.ym,v'.
      Trying pattern rule '%:: RCS/%' with stem 'Makefile.ym'.
      Trying implicit prerequisite 'RCS/Makefile.ym'.
      Not found 'RCS/Makefile.ym'.
      Trying pattern rule '%:: s.%' with stem 'Makefile.ym'.
      Trying implicit prerequisite 's.Makefile.ym'.
      Not found 's.Makefile.ym'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.ym'.
      Trying implicit prerequisite 'SCCS/s.Makefile.ym'.
      Not found 'SCCS/s.Makefile.ym'.
      Trying harder.
     No implicit rule found for 'Makefile.ym'.
     Rejecting rule '%.m: %.ym' due to impossible prerequisite 'Makefile.ym'.
    No implicit rule found for 'Makefile.m'.
    Rejecting rule '%.o: %.m' due to impossible prerequisite 'Makefile.m'.
    Trying pattern rule '%.o: %.r' with stem 'Makefile'.
    Rejecting rule '%.o: %.r' due to impossible implicit prerequisite 'Makefile.r'.
    Trying pattern rule '%.o: %.s' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.s'.
    Looking for a rule with intermediate file 'Makefile.s'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.s'.
     Trying pattern rule '%.s: %.S' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.S'.
     Not found 'Makefile.S'.
     Trying pattern rule '%:: %,v' with stem 'Makefile.s'.
     Trying implicit prerequisite 'Makefile.s,v'.
     Not found 'Makefile.s,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.s'.
     Trying implicit prerequisite 'RCS/Makefile.s,v'.
     Not found 'RCS/Makefile.s,v'.
     Trying pattern rule '%:: RCS/%' with stem 'Makefile.s'.
     Trying implicit prerequisite 'RCS/Makefile.s'.
     Not found 'RCS/Makefile.s'.
     Trying pattern rule '%:: s.%' with stem 'Makefile.s'.
     Trying implicit prerequisite 's.Makefile.s'.
     Not found 's.Makefile.s'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.s'.
     Trying implicit prerequisite 'SCCS/s.Makefile.s'.
     Not found 'SCCS/s.Makefile.s'.
     Trying harder.
     Trying pattern rule '%.s: %.S' with stem 'Makefile'.
     Trying implicit prerequisite 'Makefile.S'.
     Looking for a rule with intermediate file 'Makefile.S'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.s'.
      Avoiding implicit rule recursion for rule '%.s: %.S'.
      Trying pattern rule '%:: %,v' with stem 'Makefile.S'.
      Trying implicit prerequisite 'Makefile.S,v'.
      Not found 'Makefile.S,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.S'.
      Trying implicit prerequisite 'RCS/Makefile.S,v'.
      Not found 'RCS/Makefile.S,v'.
      Trying pattern rule '%:: RCS/%' with stem 'Makefile.S'.
      Trying implicit prerequisite 'RCS/Makefile.S'.
      Not found 'RCS/Makefile.S'.
      Trying pattern rule '%:: s.%' with stem 'Makefile.S'.
      Trying implicit prerequisite 's.Makefile.S'.
      Not found 's.Makefile.S'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.S'.
      Trying implicit prerequisite 'SCCS/s.Makefile.S'.
      Not found 'SCCS/s.Makefile.S'.
      Trying harder.
     No implicit rule found for 'Makefile.S'.
     Rejecting rule '%.s: %.S' due to impossible prerequisite 'Makefile.S'.
    No implicit rule found for 'Makefile.s'.
    Rejecting rule '%.o: %.s' due to impossible prerequisite 'Makefile.s'.
    Trying pattern rule '%.o: %.S' with stem 'Makefile'.
    Rejecting rule '%.o: %.S' due to impossible implicit prerequisite 'Makefile.S'.
    Trying pattern rule '%.o: %.mod' with stem 'Makefile'.
    Trying implicit prerequisite 'Makefile.mod'.
    Looking for a rule with intermediate file 'Makefile.mod'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.mod'.
     Trying pattern rule '%:: %,v' with stem 'Makefile.mod'.
     Trying implicit prerequisite 'Makefile.mod,v'.
     Not found 'Makefile.mod,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.mod'.
     Trying implicit prerequisite 'RCS/Makefile.mod,v'.
     Not found 'RCS/Makefile.mod,v'.
     Trying pattern rule '%:: RCS/%' with stem 'Makefile.mod'.
     Trying implicit prerequisite 'RCS/Makefile.mod'.
     Not found 'RCS/Makefile.mod'.
     Trying pattern rule '%:: s.%' with stem 'Makefile.mod'.
     Trying implicit prerequisite 's.Makefile.mod'.
     Not found 's.Makefile.mod'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.mod'.
     Trying implicit prerequisite 'SCCS/s.Makefile.mod'.
     Not found 'SCCS/s.Makefile.mod'.
     Trying harder.
    No implicit rule found for 'Makefile.mod'.
    Rejecting rule '%.o: %.mod' due to impossible prerequisite 'Makefile.mod'.
   No implicit rule found for 'Makefile.o'.
   Rejecting rule '%: %.o' due to impossible prerequisite 'Makefile.o'.
   Trying pattern rule '%: %.c' with stem 'Makefile'.
   Rejecting rule '%: %.c' due to impossible implicit prerequisite 'Makefile.c'.
   Trying pattern rule '%: %.cc' with stem 'Makefile'.
   Rejecting rule '%: %.cc' due to impossible implicit prerequisite 'Makefile.cc'.
   Trying pattern rule '%: %.C' with stem 'Makefile'.
   Rejecting rule '%: %.C' due to impossible implicit prerequisite 'Makefile.C'.
   Trying pattern rule '%: %.cpp' with stem 'Makefile'.
   Rejecting rule '%: %.cpp' due to impossible implicit prerequisite 'Makefile.cpp'.
   Trying pattern rule '%: %.p' with stem 'Makefile'.
   Rejecting rule '%: %.p' due to impossible implicit prerequisite 'Makefile.p'.
   Trying pattern rule '%: %.f' with stem 'Makefile'.
   Rejecting rule '%: %.f' due to impossible implicit prerequisite 'Makefile.f'.
   Trying pattern rule '%: %.F' with stem 'Makefile'.
   Rejecting rule '%: %.F' due to impossible implicit prerequisite 'Makefile.F'.
   Trying pattern rule '%: %.m' with stem 'Makefile'.
   Rejecting rule '%: %.m' due to impossible implicit prerequisite 'Makefile.m'.
   Trying pattern rule '%: %.r' with stem 'Makefile'.
   Rejecting rule '%: %.r' due to impossible implicit prerequisite 'Makefile.r'.
   Trying pattern rule '%: %.s' with stem 'Makefile'.
   Rejecting rule '%: %.s' due to impossible implicit prerequisite 'Makefile.s'.
   Trying pattern rule '%: %.S' with stem 'Makefile'.
   Rejecting rule '%: %.S' due to impossible implicit prerequisite 'Makefile.S'.
   Trying pattern rule '%: %.mod' with stem 'Makefile'.
   Rejecting rule '%: %.mod' due to impossible implicit prerequisite 'Makefile.mod'.
   Trying pattern rule '%: %.sh' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.sh'.
   Looking for a rule with intermediate file 'Makefile.sh'.
    Avoiding implicit rule recursion for rule '%: %.sh'.
    Trying pattern rule '%:: %,v' with stem 'Makefile.sh'.
    Trying implicit prerequisite 'Makefile.sh,v'.
    Not found 'Makefile.sh,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.sh'.
    Trying implicit prerequisite 'RCS/Makefile.sh,v'.
    Not found 'RCS/Makefile.sh,v'.
    Trying pattern rule '%:: RCS/%' with stem 'Makefile.sh'.
    Trying implicit prerequisite 'RCS/Makefile.sh'.
    Not found 'RCS/Makefile.sh'.
    Trying pattern rule '%:: s.%' with stem 'Makefile.sh'.
    Trying implicit prerequisite 's.Makefile.sh'.
    Not found 's.Makefile.sh'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.sh'.
    Trying implicit prerequisite 'SCCS/s.Makefile.sh'.
    Not found 'SCCS/s.Makefile.sh'.
    Trying harder.
   No implicit rule found for 'Makefile.sh'.
   Rejecting rule '%: %.sh' due to impossible prerequisite 'Makefile.sh'.
  No implicit rule found for 'Makefile'.
 Finished prerequisites of target file 'Makefile'.
 No need to remake target 'Makefile'.
 Considering target file 'mk/default.mk'.
  Looking for an implicit rule for 'mk/default.mk'.
   Trying pattern rule '%: %.o' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.o'.
   Not found 'mk/default.mk.o'.
   Trying pattern rule '%: %.c' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.c'.
   Not found 'mk/default.mk.c'.
   Trying pattern rule '%: %.cc' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.cc'.
   Not found 'mk/default.mk.cc'.
   Trying pattern rule '%: %.C' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.C'.
   Not found 'mk/default.mk.C'.
   Trying pattern rule '%: %.cpp' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.cpp'.
   Not found 'mk/default.mk.cpp'.
   Trying pattern rule '%: %.p' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.p'.
   Not found 'mk/default.mk.p'.
   Trying pattern rule '%: %.f' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.f'.
   Not found 'mk/default.mk.f'.
   Trying pattern rule '%: %.F' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.F'.
   Not found 'mk/default.mk.F'.
   Trying pattern rule '%: %.m' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.m'.
   Not found 'mk/default.mk.m'.
   Trying pattern rule '%: %.r' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.r'.
   Not found 'mk/default.mk.r'.
   Trying pattern rule '%: %.s' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.s'.
   Not found 'mk/default.mk.s'.
   Trying pattern rule '%: %.S' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.S'.
   Not found 'mk/default.mk.S'.
   Trying pattern rule '%: %.mod' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.mod'.
   Not found 'mk/default.mk.mod'.
   Trying pattern rule '%: %.sh' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.sh'.
   Not found 'mk/default.mk.sh'.
   Trying pattern rule '%:: %,v' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk,v'.
   Not found 'mk/default.mk,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/RCS/default.mk,v'.
   Not found 'mk/RCS/default.mk,v'.
   Trying pattern rule '%:: RCS/%' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/RCS/default.mk'.
   Not found 'mk/RCS/default.mk'.
   Trying pattern rule '%:: s.%' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/s.default.mk'.
   Not found 'mk/s.default.mk'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/SCCS/s.default.mk'.
   Not found 'mk/SCCS/s.default.mk'.
   Trying harder.
   Trying pattern rule '%: %.o' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.o'.
   Looking for a rule with intermediate file 'mk/default.mk.o'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Trying pattern rule '%.o: %.c' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.c'.
    Not found 'mk/default.mk.c'.
    Trying pattern rule '%.o: %.cc' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.cc'.
    Not found 'mk/default.mk.cc'.
    Trying pattern rule '%.o: %.C' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.C'.
    Not found 'mk/default.mk.C'.
    Trying pattern rule '%.o: %.cpp' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.cpp'.
    Not found 'mk/default.mk.cpp'.
    Trying pattern rule '%.o: %.p' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.p'.
    Not found 'mk/default.mk.p'.
    Trying pattern rule '%.o: %.f' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.f'.
    Not found 'mk/default.mk.f'.
    Trying pattern rule '%.o: %.F' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.F'.
    Not found 'mk/default.mk.F'.
    Trying pattern rule '%.o: %.m' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.m'.
    Not found 'mk/default.mk.m'.
    Trying pattern rule '%.o: %.r' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.r'.
    Not found 'mk/default.mk.r'.
    Trying pattern rule '%.o: %.s' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.s'.
    Not found 'mk/default.mk.s'.
    Trying pattern rule '%.o: %.S' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.S'.
    Not found 'mk/default.mk.S'.
    Trying pattern rule '%.o: %.mod' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.mod'.
    Not found 'mk/default.mk.mod'.
    Trying pattern rule '%:: %,v' with stem 'default.mk.o'.
    Trying implicit prerequisite 'mk/default.mk.o,v'.
    Not found 'mk/default.mk.o,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.o'.
    Trying implicit prerequisite 'mk/RCS/default.mk.o,v'.
    Not found 'mk/RCS/default.mk.o,v'.
    Trying pattern rule '%:: RCS/%' with stem 'default.mk.o'.
    Trying implicit prerequisite 'mk/RCS/default.mk.o'.
    Not found 'mk/RCS/default.mk.o'.
    Trying pattern rule '%:: s.%' with stem 'default.mk.o'.
    Trying implicit prerequisite 'mk/s.default.mk.o'.
    Not found 'mk/s.default.mk.o'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.o'.
    Trying implicit prerequisite 'mk/SCCS/s.default.mk.o'.
    Not found 'mk/SCCS/s.default.mk.o'.
    Trying harder.
    Trying pattern rule '%.o: %.c' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.c'.
    Looking for a rule with intermediate file 'mk/default.mk.c'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.c'.
     Trying pattern rule '%.c: %.y' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.y'.
     Not found 'mk/default.mk.y'.
     Trying pattern rule '%.c: %.l' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.l'.
     Not found 'mk/default.mk.l'.
     Trying pattern rule '%.c: %.w' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.w'.
     Not found 'mk/default.mk.w'.
     Trying pattern rule '%.c: %.w %.ch' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.w'.
     Not found 'mk/default.mk.w'.
     Trying pattern rule '%:: %,v' with stem 'default.mk.c'.
     Trying implicit prerequisite 'mk/default.mk.c,v'.
     Not found 'mk/default.mk.c,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.c'.
     Trying implicit prerequisite 'mk/RCS/default.mk.c,v'.
     Not found 'mk/RCS/default.mk.c,v'.
     Trying pattern rule '%:: RCS/%' with stem 'default.mk.c'.
     Trying implicit prerequisite 'mk/RCS/default.mk.c'.
     Not found 'mk/RCS/default.mk.c'.
     Trying pattern rule '%:: s.%' with stem 'default.mk.c'.
     Trying implicit prerequisite 'mk/s.default.mk.c'.
     Not found 'mk/s.default.mk.c'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.c'.
     Trying implicit prerequisite 'mk/SCCS/s.default.mk.c'.
     Not found 'mk/SCCS/s.default.mk.c'.
     Trying harder.
     Trying pattern rule '%.c: %.y' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.y'.
     Looking for a rule with intermediate file 'mk/default.mk.y'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.y'.
      Trying pattern rule '%:: %,v' with stem 'default.mk.y'.
      Trying implicit prerequisite 'mk/default.mk.y,v'.
      Not found 'mk/default.mk.y,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.y'.
      Trying implicit prerequisite 'mk/RCS/default.mk.y,v'.
      Not found 'mk/RCS/default.mk.y,v'.
      Trying pattern rule '%:: RCS/%' with stem 'default.mk.y'.
      Trying implicit prerequisite 'mk/RCS/default.mk.y'.
      Not found 'mk/RCS/default.mk.y'.
      Trying pattern rule '%:: s.%' with stem 'default.mk.y'.
      Trying implicit prerequisite 'mk/s.default.mk.y'.
      Not found 'mk/s.default.mk.y'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.y'.
      Trying implicit prerequisite 'mk/SCCS/s.default.mk.y'.
      Not found 'mk/SCCS/s.default.mk.y'.
      Trying harder.
     No implicit rule found for 'mk/default.mk.y'.
     Rejecting rule '%.c: %.y' due to impossible prerequisite 'mk/default.mk.y'.
     Trying pattern rule '%.c: %.l' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.l'.
     Looking for a rule with intermediate file 'mk/default.mk.l'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.l'.
      Trying pattern rule '%:: %,v' with stem 'default.mk.l'.
      Trying implicit prerequisite 'mk/default.mk.l,v'.
      Not found 'mk/default.mk.l,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.l'.
      Trying implicit prerequisite 'mk/RCS/default.mk.l,v'.
      Not found 'mk/RCS/default.mk.l,v'.
      Trying pattern rule '%:: RCS/%' with stem 'default.mk.l'.
      Trying implicit prerequisite 'mk/RCS/default.mk.l'.
      Not found 'mk/RCS/default.mk.l'.
      Trying pattern rule '%:: s.%' with stem 'default.mk.l'.
      Trying implicit prerequisite 'mk/s.default.mk.l'.
      Not found 'mk/s.default.mk.l'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.l'.
      Trying implicit prerequisite 'mk/SCCS/s.default.mk.l'.
      Not found 'mk/SCCS/s.default.mk.l'.
      Trying harder.
     No implicit rule found for 'mk/default.mk.l'.
     Rejecting rule '%.c: %.l' due to impossible prerequisite 'mk/default.mk.l'.
     Trying pattern rule '%.c: %.w' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.w'.
     Looking for a rule with intermediate file 'mk/default.mk.w'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.w'.
      Trying pattern rule '%:: %,v' with stem 'default.mk.w'.
      Trying implicit prerequisite 'mk/default.mk.w,v'.
      Not found 'mk/default.mk.w,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.w'.
      Trying implicit prerequisite 'mk/RCS/default.mk.w,v'.
      Not found 'mk/RCS/default.mk.w,v'.
      Trying pattern rule '%:: RCS/%' with stem 'default.mk.w'.
      Trying implicit prerequisite 'mk/RCS/default.mk.w'.
      Not found 'mk/RCS/default.mk.w'.
      Trying pattern rule '%:: s.%' with stem 'default.mk.w'.
      Trying implicit prerequisite 'mk/s.default.mk.w'.
      Not found 'mk/s.default.mk.w'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.w'.
      Trying implicit prerequisite 'mk/SCCS/s.default.mk.w'.
      Not found 'mk/SCCS/s.default.mk.w'.
      Trying harder.
     No implicit rule found for 'mk/default.mk.w'.
     Rejecting rule '%.c: %.w' due to impossible prerequisite 'mk/default.mk.w'.
     Trying pattern rule '%.c: %.w %.ch' with stem 'default.mk'.
     Rejecting rule '%.c: %.w %.ch' due to impossible implicit prerequisite 'mk/default.mk.w'.
    No implicit rule found for 'mk/default.mk.c'.
    Rejecting rule '%.o: %.c' due to impossible prerequisite 'mk/default.mk.c'.
    Trying pattern rule '%.o: %.cc' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.cc'.
    Looking for a rule with intermediate file 'mk/default.mk.cc'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.cc'.
     Trying pattern rule '%:: %,v' with stem 'default.mk.cc'.
     Trying implicit prerequisite 'mk/default.mk.cc,v'.
     Not found 'mk/default.mk.cc,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.cc'.
     Trying implicit prerequisite 'mk/RCS/default.mk.cc,v'.
     Not found 'mk/RCS/default.mk.cc,v'.
     Trying pattern rule '%:: RCS/%' with stem 'default.mk.cc'.
     Trying implicit prerequisite 'mk/RCS/default.mk.cc'.
     Not found 'mk/RCS/default.mk.cc'.
     Trying pattern rule '%:: s.%' with stem 'default.mk.cc'.
     Trying implicit prerequisite 'mk/s.default.mk.cc'.
     Not found 'mk/s.default.mk.cc'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.cc'.
     Trying implicit prerequisite 'mk/SCCS/s.default.mk.cc'.
     Not found 'mk/SCCS/s.default.mk.cc'.
     Trying harder.
    No implicit rule found for 'mk/default.mk.cc'.
    Rejecting rule '%.o: %.cc' due to impossible prerequisite 'mk/default.mk.cc'.
    Trying pattern rule '%.o: %.C' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.C'.
    Looking for a rule with intermediate file 'mk/default.mk.C'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.C'.
     Trying pattern rule '%:: %,v' with stem 'default.mk.C'.
     Trying implicit prerequisite 'mk/default.mk.C,v'.
     Not found 'mk/default.mk.C,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.C'.
     Trying implicit prerequisite 'mk/RCS/default.mk.C,v'.
     Not found 'mk/RCS/default.mk.C,v'.
     Trying pattern rule '%:: RCS/%' with stem 'default.mk.C'.
     Trying implicit prerequisite 'mk/RCS/default.mk.C'.
     Not found 'mk/RCS/default.mk.C'.
     Trying pattern rule '%:: s.%' with stem 'default.mk.C'.
     Trying implicit prerequisite 'mk/s.default.mk.C'.
     Not found 'mk/s.default.mk.C'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.C'.
     Trying implicit prerequisite 'mk/SCCS/s.default.mk.C'.
     Not found 'mk/SCCS/s.default.mk.C'.
     Trying harder.
    No implicit rule found for 'mk/default.mk.C'.
    Rejecting rule '%.o: %.C' due to impossible prerequisite 'mk/default.mk.C'.
    Trying pattern rule '%.o: %.cpp' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.cpp'.
    Looking for a rule with intermediate file 'mk/default.mk.cpp'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.cpp'.
     Trying pattern rule '%:: %,v' with stem 'default.mk.cpp'.
     Trying implicit prerequisite 'mk/default.mk.cpp,v'.
     Not found 'mk/default.mk.cpp,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.cpp'.
     Trying implicit prerequisite 'mk/RCS/default.mk.cpp,v'.
     Not found 'mk/RCS/default.mk.cpp,v'.
     Trying pattern rule '%:: RCS/%' with stem 'default.mk.cpp'.
     Trying implicit prerequisite 'mk/RCS/default.mk.cpp'.
     Not found 'mk/RCS/default.mk.cpp'.
     Trying pattern rule '%:: s.%' with stem 'default.mk.cpp'.
     Trying implicit prerequisite 'mk/s.default.mk.cpp'.
     Not found 'mk/s.default.mk.cpp'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.cpp'.
     Trying implicit prerequisite 'mk/SCCS/s.default.mk.cpp'.
     Not found 'mk/SCCS/s.default.mk.cpp'.
     Trying harder.
    No implicit rule found for 'mk/default.mk.cpp'.
    Rejecting rule '%.o: %.cpp' due to impossible prerequisite 'mk/default.mk.cpp'.
    Trying pattern rule '%.o: %.p' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.p'.
    Looking for a rule with intermediate file 'mk/default.mk.p'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.p'.
     Trying pattern rule '%.p: %.web' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.web'.
     Not found 'mk/default.mk.web'.
     Trying pattern rule '%:: %,v' with stem 'default.mk.p'.
     Trying implicit prerequisite 'mk/default.mk.p,v'.
     Not found 'mk/default.mk.p,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.p'.
     Trying implicit prerequisite 'mk/RCS/default.mk.p,v'.
     Not found 'mk/RCS/default.mk.p,v'.
     Trying pattern rule '%:: RCS/%' with stem 'default.mk.p'.
     Trying implicit prerequisite 'mk/RCS/default.mk.p'.
     Not found 'mk/RCS/default.mk.p'.
     Trying pattern rule '%:: s.%' with stem 'default.mk.p'.
     Trying implicit prerequisite 'mk/s.default.mk.p'.
     Not found 'mk/s.default.mk.p'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.p'.
     Trying implicit prerequisite 'mk/SCCS/s.default.mk.p'.
     Not found 'mk/SCCS/s.default.mk.p'.
     Trying harder.
     Trying pattern rule '%.p: %.web' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.web'.
     Looking for a rule with intermediate file 'mk/default.mk.web'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.p'.
      Avoiding implicit rule recursion for rule '%.p: %.web'.
      Trying pattern rule '%:: %,v' with stem 'default.mk.web'.
      Trying implicit prerequisite 'mk/default.mk.web,v'.
      Not found 'mk/default.mk.web,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.web'.
      Trying implicit prerequisite 'mk/RCS/default.mk.web,v'.
      Not found 'mk/RCS/default.mk.web,v'.
      Trying pattern rule '%:: RCS/%' with stem 'default.mk.web'.
      Trying implicit prerequisite 'mk/RCS/default.mk.web'.
      Not found 'mk/RCS/default.mk.web'.
      Trying pattern rule '%:: s.%' with stem 'default.mk.web'.
      Trying implicit prerequisite 'mk/s.default.mk.web'.
      Not found 'mk/s.default.mk.web'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.web'.
      Trying implicit prerequisite 'mk/SCCS/s.default.mk.web'.
      Not found 'mk/SCCS/s.default.mk.web'.
      Trying harder.
     No implicit rule found for 'mk/default.mk.web'.
     Rejecting rule '%.p: %.web' due to impossible prerequisite 'mk/default.mk.web'.
    No implicit rule found for 'mk/default.mk.p'.
    Rejecting rule '%.o: %.p' due to impossible prerequisite 'mk/default.mk.p'.
    Trying pattern rule '%.o: %.f' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.f'.
    Looking for a rule with intermediate file 'mk/default.mk.f'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.f'.
     Trying pattern rule '%.f: %.F' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.F'.
     Not found 'mk/default.mk.F'.
     Trying pattern rule '%.f: %.r' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.r'.
     Not found 'mk/default.mk.r'.
     Trying pattern rule '%:: %,v' with stem 'default.mk.f'.
     Trying implicit prerequisite 'mk/default.mk.f,v'.
     Not found 'mk/default.mk.f,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.f'.
     Trying implicit prerequisite 'mk/RCS/default.mk.f,v'.
     Not found 'mk/RCS/default.mk.f,v'.
     Trying pattern rule '%:: RCS/%' with stem 'default.mk.f'.
     Trying implicit prerequisite 'mk/RCS/default.mk.f'.
     Not found 'mk/RCS/default.mk.f'.
     Trying pattern rule '%:: s.%' with stem 'default.mk.f'.
     Trying implicit prerequisite 'mk/s.default.mk.f'.
     Not found 'mk/s.default.mk.f'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.f'.
     Trying implicit prerequisite 'mk/SCCS/s.default.mk.f'.
     Not found 'mk/SCCS/s.default.mk.f'.
     Trying harder.
     Trying pattern rule '%.f: %.F' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.F'.
     Looking for a rule with intermediate file 'mk/default.mk.F'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.f'.
      Avoiding implicit rule recursion for rule '%.f: %.F'.
      Trying pattern rule '%:: %,v' with stem 'default.mk.F'.
      Trying implicit prerequisite 'mk/default.mk.F,v'.
      Not found 'mk/default.mk.F,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.F'.
      Trying implicit prerequisite 'mk/RCS/default.mk.F,v'.
      Not found 'mk/RCS/default.mk.F,v'.
      Trying pattern rule '%:: RCS/%' with stem 'default.mk.F'.
      Trying implicit prerequisite 'mk/RCS/default.mk.F'.
      Not found 'mk/RCS/default.mk.F'.
      Trying pattern rule '%:: s.%' with stem 'default.mk.F'.
      Trying implicit prerequisite 'mk/s.default.mk.F'.
      Not found 'mk/s.default.mk.F'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.F'.
      Trying implicit prerequisite 'mk/SCCS/s.default.mk.F'.
      Not found 'mk/SCCS/s.default.mk.F'.
      Trying harder.
     No implicit rule found for 'mk/default.mk.F'.
     Rejecting rule '%.f: %.F' due to impossible prerequisite 'mk/default.mk.F'.
     Trying pattern rule '%.f: %.r' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.r'.
     Looking for a rule with intermediate file 'mk/default.mk.r'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.f'.
      Avoiding implicit rule recursion for rule '%.f: %.r'.
      Trying pattern rule '%.r: %.l' with stem 'default.mk'.
      Rejecting rule '%.r: %.l' due to impossible implicit prerequisite 'mk/default.mk.l'.
      Trying pattern rule '%:: %,v' with stem 'default.mk.r'.
      Trying implicit prerequisite 'mk/default.mk.r,v'.
      Not found 'mk/default.mk.r,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.r'.
      Trying implicit prerequisite 'mk/RCS/default.mk.r,v'.
      Not found 'mk/RCS/default.mk.r,v'.
      Trying pattern rule '%:: RCS/%' with stem 'default.mk.r'.
      Trying implicit prerequisite 'mk/RCS/default.mk.r'.
      Not found 'mk/RCS/default.mk.r'.
      Trying pattern rule '%:: s.%' with stem 'default.mk.r'.
      Trying implicit prerequisite 'mk/s.default.mk.r'.
      Not found 'mk/s.default.mk.r'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.r'.
      Trying implicit prerequisite 'mk/SCCS/s.default.mk.r'.
      Not found 'mk/SCCS/s.default.mk.r'.
      Trying harder.
     No implicit rule found for 'mk/default.mk.r'.
     Rejecting rule '%.f: %.r' due to impossible prerequisite 'mk/default.mk.r'.
    No implicit rule found for 'mk/default.mk.f'.
    Rejecting rule '%.o: %.f' due to impossible prerequisite 'mk/default.mk.f'.
    Trying pattern rule '%.o: %.F' with stem 'default.mk'.
    Rejecting rule '%.o: %.F' due to impossible implicit prerequisite 'mk/default.mk.F'.
    Trying pattern rule '%.o: %.m' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.m'.
    Looking for a rule with intermediate file 'mk/default.mk.m'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.m'.
     Trying pattern rule '%.m: %.ym' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.ym'.
     Not found 'mk/default.mk.ym'.
     Trying pattern rule '%:: %,v' with stem 'default.mk.m'.
     Trying implicit prerequisite 'mk/default.mk.m,v'.
     Not found 'mk/default.mk.m,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.m'.
     Trying implicit prerequisite 'mk/RCS/default.mk.m,v'.
     Not found 'mk/RCS/default.mk.m,v'.
     Trying pattern rule '%:: RCS/%' with stem 'default.mk.m'.
     Trying implicit prerequisite 'mk/RCS/default.mk.m'.
     Not found 'mk/RCS/default.mk.m'.
     Trying pattern rule '%:: s.%' with stem 'default.mk.m'.
     Trying implicit prerequisite 'mk/s.default.mk.m'.
     Not found 'mk/s.default.mk.m'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.m'.
     Trying implicit prerequisite 'mk/SCCS/s.default.mk.m'.
     Not found 'mk/SCCS/s.default.mk.m'.
     Trying harder.
     Trying pattern rule '%.m: %.ym' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.ym'.
     Looking for a rule with intermediate file 'mk/default.mk.ym'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.m'.
      Avoiding implicit rule recursion for rule '%.m: %.ym'.
      Trying pattern rule '%:: %,v' with stem 'default.mk.ym'.
      Trying implicit prerequisite 'mk/default.mk.ym,v'.
      Not found 'mk/default.mk.ym,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.ym'.
      Trying implicit prerequisite 'mk/RCS/default.mk.ym,v'.
      Not found 'mk/RCS/default.mk.ym,v'.
      Trying pattern rule '%:: RCS/%' with stem 'default.mk.ym'.
      Trying implicit prerequisite 'mk/RCS/default.mk.ym'.
      Not found 'mk/RCS/default.mk.ym'.
      Trying pattern rule '%:: s.%' with stem 'default.mk.ym'.
      Trying implicit prerequisite 'mk/s.default.mk.ym'.
      Not found 'mk/s.default.mk.ym'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.ym'.
      Trying implicit prerequisite 'mk/SCCS/s.default.mk.ym'.
      Not found 'mk/SCCS/s.default.mk.ym'.
      Trying harder.
     No implicit rule found for 'mk/default.mk.ym'.
     Rejecting rule '%.m: %.ym' due to impossible prerequisite 'mk/default.mk.ym'.
    No implicit rule found for 'mk/default.mk.m'.
    Rejecting rule '%.o: %.m' due to impossible prerequisite 'mk/default.mk.m'.
    Trying pattern rule '%.o: %.r' with stem 'default.mk'.
    Rejecting rule '%.o: %.r' due to impossible implicit prerequisite 'mk/default.mk.r'.
    Trying pattern rule '%.o: %.s' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.s'.
    Looking for a rule with intermediate file 'mk/default.mk.s'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.s'.
     Trying pattern rule '%.s: %.S' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.S'.
     Not found 'mk/default.mk.S'.
     Trying pattern rule '%:: %,v' with stem 'default.mk.s'.
     Trying implicit prerequisite 'mk/default.mk.s,v'.
     Not found 'mk/default.mk.s,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.s'.
     Trying implicit prerequisite 'mk/RCS/default.mk.s,v'.
     Not found 'mk/RCS/default.mk.s,v'.
     Trying pattern rule '%:: RCS/%' with stem 'default.mk.s'.
     Trying implicit prerequisite 'mk/RCS/default.mk.s'.
     Not found 'mk/RCS/default.mk.s'.
     Trying pattern rule '%:: s.%' with stem 'default.mk.s'.
     Trying implicit prerequisite 'mk/s.default.mk.s'.
     Not found 'mk/s.default.mk.s'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.s'.
     Trying implicit prerequisite 'mk/SCCS/s.default.mk.s'.
     Not found 'mk/SCCS/s.default.mk.s'.
     Trying harder.
     Trying pattern rule '%.s: %.S' with stem 'default.mk'.
     Trying implicit prerequisite 'mk/default.mk.S'.
     Looking for a rule with intermediate file 'mk/default.mk.S'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.s'.
      Avoiding implicit rule recursion for rule '%.s: %.S'.
      Trying pattern rule '%:: %,v' with stem 'default.mk.S'.
      Trying implicit prerequisite 'mk/default.mk.S,v'.
      Not found 'mk/default.mk.S,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.S'.
      Trying implicit prerequisite 'mk/RCS/default.mk.S,v'.
      Not found 'mk/RCS/default.mk.S,v'.
      Trying pattern rule '%:: RCS/%' with stem 'default.mk.S'.
      Trying implicit prerequisite 'mk/RCS/default.mk.S'.
      Not found 'mk/RCS/default.mk.S'.
      Trying pattern rule '%:: s.%' with stem 'default.mk.S'.
      Trying implicit prerequisite 'mk/s.default.mk.S'.
      Not found 'mk/s.default.mk.S'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.S'.
      Trying implicit prerequisite 'mk/SCCS/s.default.mk.S'.
      Not found 'mk/SCCS/s.default.mk.S'.
      Trying harder.
     No implicit rule found for 'mk/default.mk.S'.
     Rejecting rule '%.s: %.S' due to impossible prerequisite 'mk/default.mk.S'.
    No implicit rule found for 'mk/default.mk.s'.
    Rejecting rule '%.o: %.s' due to impossible prerequisite 'mk/default.mk.s'.
    Trying pattern rule '%.o: %.S' with stem 'default.mk'.
    Rejecting rule '%.o: %.S' due to impossible implicit prerequisite 'mk/default.mk.S'.
    Trying pattern rule '%.o: %.mod' with stem 'default.mk'.
    Trying implicit prerequisite 'mk/default.mk.mod'.
    Looking for a rule with intermediate file 'mk/default.mk.mod'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.mod'.
     Trying pattern rule '%:: %,v' with stem 'default.mk.mod'.
     Trying implicit prerequisite 'mk/default.mk.mod,v'.
     Not found 'mk/default.mk.mod,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.mod'.
     Trying implicit prerequisite 'mk/RCS/default.mk.mod,v'.
     Not found 'mk/RCS/default.mk.mod,v'.
     Trying pattern rule '%:: RCS/%' with stem 'default.mk.mod'.
     Trying implicit prerequisite 'mk/RCS/default.mk.mod'.
     Not found 'mk/RCS/default.mk.mod'.
     Trying pattern rule '%:: s.%' with stem 'default.mk.mod'.
     Trying implicit prerequisite 'mk/s.default.mk.mod'.
     Not found 'mk/s.default.mk.mod'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.mod'.
     Trying implicit prerequisite 'mk/SCCS/s.default.mk.mod'.
     Not found 'mk/SCCS/s.default.mk.mod'.
     Trying harder.
    No implicit rule found for 'mk/default.mk.mod'.
    Rejecting rule '%.o: %.mod' due to impossible prerequisite 'mk/default.mk.mod'.
   No implicit rule found for 'mk/default.mk.o'.
   Rejecting rule '%: %.o' due to impossible prerequisite 'mk/default.mk.o'.
   Trying pattern rule '%: %.c' with stem 'default.mk'.
   Rejecting rule '%: %.c' due to impossible implicit prerequisite 'mk/default.mk.c'.
   Trying pattern rule '%: %.cc' with stem 'default.mk'.
   Rejecting rule '%: %.cc' due to impossible implicit prerequisite 'mk/default.mk.cc'.
   Trying pattern rule '%: %.C' with stem 'default.mk'.
   Rejecting rule '%: %.C' due to impossible implicit prerequisite 'mk/default.mk.C'.
   Trying pattern rule '%: %.cpp' with stem 'default.mk'.
   Rejecting rule '%: %.cpp' due to impossible implicit prerequisite 'mk/default.mk.cpp'.
   Trying pattern rule '%: %.p' with stem 'default.mk'.
   Rejecting rule '%: %.p' due to impossible implicit prerequisite 'mk/default.mk.p'.
   Trying pattern rule '%: %.f' with stem 'default.mk'.
   Rejecting rule '%: %.f' due to impossible implicit prerequisite 'mk/default.mk.f'.
   Trying pattern rule '%: %.F' with stem 'default.mk'.
   Rejecting rule '%: %.F' due to impossible implicit prerequisite 'mk/default.mk.F'.
   Trying pattern rule '%: %.m' with stem 'default.mk'.
   Rejecting rule '%: %.m' due to impossible implicit prerequisite 'mk/default.mk.m'.
   Trying pattern rule '%: %.r' with stem 'default.mk'.
   Rejecting rule '%: %.r' due to impossible implicit prerequisite 'mk/default.mk.r'.
   Trying pattern rule '%: %.s' with stem 'default.mk'.
   Rejecting rule '%: %.s' due to impossible implicit prerequisite 'mk/default.mk.s'.
   Trying pattern rule '%: %.S' with stem 'default.mk'.
   Rejecting rule '%: %.S' due to impossible implicit prerequisite 'mk/default.mk.S'.
   Trying pattern rule '%: %.mod' with stem 'default.mk'.
   Rejecting rule '%: %.mod' due to impossible implicit prerequisite 'mk/default.mk.mod'.
   Trying pattern rule '%: %.sh' with stem 'default.mk'.
   Trying implicit prerequisite 'mk/default.mk.sh'.
   Looking for a rule with intermediate file 'mk/default.mk.sh'.
    Avoiding implicit rule recursion for rule '%: %.sh'.
    Trying pattern rule '%:: %,v' with stem 'default.mk.sh'.
    Trying implicit prerequisite 'mk/default.mk.sh,v'.
    Not found 'mk/default.mk.sh,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'default.mk.sh'.
    Trying implicit prerequisite 'mk/RCS/default.mk.sh,v'.
    Not found 'mk/RCS/default.mk.sh,v'.
    Trying pattern rule '%:: RCS/%' with stem 'default.mk.sh'.
    Trying implicit prerequisite 'mk/RCS/default.mk.sh'.
    Not found 'mk/RCS/default.mk.sh'.
    Trying pattern rule '%:: s.%' with stem 'default.mk.sh'.
    Trying implicit prerequisite 'mk/s.default.mk.sh'.
    Not found 'mk/s.default.mk.sh'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'default.mk.sh'.
    Trying implicit prerequisite 'mk/SCCS/s.default.mk.sh'.
    Not found 'mk/SCCS/s.default.mk.sh'.
    Trying harder.
   No implicit rule found for 'mk/default.mk.sh'.
   Rejecting rule '%: %.sh' due to impossible prerequisite 'mk/default.mk.sh'.
  No implicit rule found for 'mk/default.mk'.
 Finished prerequisites of target file 'mk/default.mk'.
 No need to remake target 'mk/default.mk'.
 Considering target file 'local.mk'.
 Finished prerequisites of target file 'local.mk'.
 No need to remake target 'local.mk'.
 Considering target file 'mk/targets.mk'.
  Looking for an implicit rule for 'mk/targets.mk'.
   Trying pattern rule '%: %.o' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.o'.
   Not found 'mk/targets.mk.o'.
   Trying pattern rule '%: %.c' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.c'.
   Not found 'mk/targets.mk.c'.
   Trying pattern rule '%: %.cc' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.cc'.
   Not found 'mk/targets.mk.cc'.
   Trying pattern rule '%: %.C' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.C'.
   Not found 'mk/targets.mk.C'.
   Trying pattern rule '%: %.cpp' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.cpp'.
   Not found 'mk/targets.mk.cpp'.
   Trying pattern rule '%: %.p' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.p'.
   Not found 'mk/targets.mk.p'.
   Trying pattern rule '%: %.f' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.f'.
   Not found 'mk/targets.mk.f'.
   Trying pattern rule '%: %.F' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.F'.
   Not found 'mk/targets.mk.F'.
   Trying pattern rule '%: %.m' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.m'.
   Not found 'mk/targets.mk.m'.
   Trying pattern rule '%: %.r' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.r'.
   Not found 'mk/targets.mk.r'.
   Trying pattern rule '%: %.s' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.s'.
   Not found 'mk/targets.mk.s'.
   Trying pattern rule '%: %.S' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.S'.
   Not found 'mk/targets.mk.S'.
   Trying pattern rule '%: %.mod' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.mod'.
   Not found 'mk/targets.mk.mod'.
   Trying pattern rule '%: %.sh' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.sh'.
   Not found 'mk/targets.mk.sh'.
   Trying pattern rule '%:: %,v' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk,v'.
   Not found 'mk/targets.mk,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/RCS/targets.mk,v'.
   Not found 'mk/RCS/targets.mk,v'.
   Trying pattern rule '%:: RCS/%' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/RCS/targets.mk'.
   Not found 'mk/RCS/targets.mk'.
   Trying pattern rule '%:: s.%' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/s.targets.mk'.
   Not found 'mk/s.targets.mk'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/SCCS/s.targets.mk'.
   Not found 'mk/SCCS/s.targets.mk'.
   Trying harder.
   Trying pattern rule '%: %.o' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.o'.
   Looking for a rule with intermediate file 'mk/targets.mk.o'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Trying pattern rule '%.o: %.c' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.c'.
    Not found 'mk/targets.mk.c'.
    Trying pattern rule '%.o: %.cc' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.cc'.
    Not found 'mk/targets.mk.cc'.
    Trying pattern rule '%.o: %.C' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.C'.
    Not found 'mk/targets.mk.C'.
    Trying pattern rule '%.o: %.cpp' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.cpp'.
    Not found 'mk/targets.mk.cpp'.
    Trying pattern rule '%.o: %.p' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.p'.
    Not found 'mk/targets.mk.p'.
    Trying pattern rule '%.o: %.f' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.f'.
    Not found 'mk/targets.mk.f'.
    Trying pattern rule '%.o: %.F' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.F'.
    Not found 'mk/targets.mk.F'.
    Trying pattern rule '%.o: %.m' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.m'.
    Not found 'mk/targets.mk.m'.
    Trying pattern rule '%.o: %.r' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.r'.
    Not found 'mk/targets.mk.r'.
    Trying pattern rule '%.o: %.s' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.s'.
    Not found 'mk/targets.mk.s'.
    Trying pattern rule '%.o: %.S' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.S'.
    Not found 'mk/targets.mk.S'.
    Trying pattern rule '%.o: %.mod' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.mod'.
    Not found 'mk/targets.mk.mod'.
    Trying pattern rule '%:: %,v' with stem 'targets.mk.o'.
    Trying implicit prerequisite 'mk/targets.mk.o,v'.
    Not found 'mk/targets.mk.o,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.o'.
    Trying implicit prerequisite 'mk/RCS/targets.mk.o,v'.
    Not found 'mk/RCS/targets.mk.o,v'.
    Trying pattern rule '%:: RCS/%' with stem 'targets.mk.o'.
    Trying implicit prerequisite 'mk/RCS/targets.mk.o'.
    Not found 'mk/RCS/targets.mk.o'.
    Trying pattern rule '%:: s.%' with stem 'targets.mk.o'.
    Trying implicit prerequisite 'mk/s.targets.mk.o'.
    Not found 'mk/s.targets.mk.o'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.o'.
    Trying implicit prerequisite 'mk/SCCS/s.targets.mk.o'.
    Not found 'mk/SCCS/s.targets.mk.o'.
    Trying harder.
    Trying pattern rule '%.o: %.c' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.c'.
    Looking for a rule with intermediate file 'mk/targets.mk.c'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.c'.
     Trying pattern rule '%.c: %.y' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.y'.
     Not found 'mk/targets.mk.y'.
     Trying pattern rule '%.c: %.l' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.l'.
     Not found 'mk/targets.mk.l'.
     Trying pattern rule '%.c: %.w' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.w'.
     Not found 'mk/targets.mk.w'.
     Trying pattern rule '%.c: %.w %.ch' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.w'.
     Not found 'mk/targets.mk.w'.
     Trying pattern rule '%:: %,v' with stem 'targets.mk.c'.
     Trying implicit prerequisite 'mk/targets.mk.c,v'.
     Not found 'mk/targets.mk.c,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.c'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.c,v'.
     Not found 'mk/RCS/targets.mk.c,v'.
     Trying pattern rule '%:: RCS/%' with stem 'targets.mk.c'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.c'.
     Not found 'mk/RCS/targets.mk.c'.
     Trying pattern rule '%:: s.%' with stem 'targets.mk.c'.
     Trying implicit prerequisite 'mk/s.targets.mk.c'.
     Not found 'mk/s.targets.mk.c'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.c'.
     Trying implicit prerequisite 'mk/SCCS/s.targets.mk.c'.
     Not found 'mk/SCCS/s.targets.mk.c'.
     Trying harder.
     Trying pattern rule '%.c: %.y' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.y'.
     Looking for a rule with intermediate file 'mk/targets.mk.y'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.y'.
      Trying pattern rule '%:: %,v' with stem 'targets.mk.y'.
      Trying implicit prerequisite 'mk/targets.mk.y,v'.
      Not found 'mk/targets.mk.y,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.y'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.y,v'.
      Not found 'mk/RCS/targets.mk.y,v'.
      Trying pattern rule '%:: RCS/%' with stem 'targets.mk.y'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.y'.
      Not found 'mk/RCS/targets.mk.y'.
      Trying pattern rule '%:: s.%' with stem 'targets.mk.y'.
      Trying implicit prerequisite 'mk/s.targets.mk.y'.
      Not found 'mk/s.targets.mk.y'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.y'.
      Trying implicit prerequisite 'mk/SCCS/s.targets.mk.y'.
      Not found 'mk/SCCS/s.targets.mk.y'.
      Trying harder.
     No implicit rule found for 'mk/targets.mk.y'.
     Rejecting rule '%.c: %.y' due to impossible prerequisite 'mk/targets.mk.y'.
     Trying pattern rule '%.c: %.l' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.l'.
     Looking for a rule with intermediate file 'mk/targets.mk.l'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.l'.
      Trying pattern rule '%:: %,v' with stem 'targets.mk.l'.
      Trying implicit prerequisite 'mk/targets.mk.l,v'.
      Not found 'mk/targets.mk.l,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.l'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.l,v'.
      Not found 'mk/RCS/targets.mk.l,v'.
      Trying pattern rule '%:: RCS/%' with stem 'targets.mk.l'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.l'.
      Not found 'mk/RCS/targets.mk.l'.
      Trying pattern rule '%:: s.%' with stem 'targets.mk.l'.
      Trying implicit prerequisite 'mk/s.targets.mk.l'.
      Not found 'mk/s.targets.mk.l'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.l'.
      Trying implicit prerequisite 'mk/SCCS/s.targets.mk.l'.
      Not found 'mk/SCCS/s.targets.mk.l'.
      Trying harder.
     No implicit rule found for 'mk/targets.mk.l'.
     Rejecting rule '%.c: %.l' due to impossible prerequisite 'mk/targets.mk.l'.
     Trying pattern rule '%.c: %.w' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.w'.
     Looking for a rule with intermediate file 'mk/targets.mk.w'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.w'.
      Trying pattern rule '%:: %,v' with stem 'targets.mk.w'.
      Trying implicit prerequisite 'mk/targets.mk.w,v'.
      Not found 'mk/targets.mk.w,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.w'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.w,v'.
      Not found 'mk/RCS/targets.mk.w,v'.
      Trying pattern rule '%:: RCS/%' with stem 'targets.mk.w'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.w'.
      Not found 'mk/RCS/targets.mk.w'.
      Trying pattern rule '%:: s.%' with stem 'targets.mk.w'.
      Trying implicit prerequisite 'mk/s.targets.mk.w'.
      Not found 'mk/s.targets.mk.w'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.w'.
      Trying implicit prerequisite 'mk/SCCS/s.targets.mk.w'.
      Not found 'mk/SCCS/s.targets.mk.w'.
      Trying harder.
     No implicit rule found for 'mk/targets.mk.w'.
     Rejecting rule '%.c: %.w' due to impossible prerequisite 'mk/targets.mk.w'.
     Trying pattern rule '%.c: %.w %.ch' with stem 'targets.mk'.
     Rejecting rule '%.c: %.w %.ch' due to impossible implicit prerequisite 'mk/targets.mk.w'.
    No implicit rule found for 'mk/targets.mk.c'.
    Rejecting rule '%.o: %.c' due to impossible prerequisite 'mk/targets.mk.c'.
    Trying pattern rule '%.o: %.cc' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.cc'.
    Looking for a rule with intermediate file 'mk/targets.mk.cc'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.cc'.
     Trying pattern rule '%:: %,v' with stem 'targets.mk.cc'.
     Trying implicit prerequisite 'mk/targets.mk.cc,v'.
     Not found 'mk/targets.mk.cc,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.cc'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.cc,v'.
     Not found 'mk/RCS/targets.mk.cc,v'.
     Trying pattern rule '%:: RCS/%' with stem 'targets.mk.cc'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.cc'.
     Not found 'mk/RCS/targets.mk.cc'.
     Trying pattern rule '%:: s.%' with stem 'targets.mk.cc'.
     Trying implicit prerequisite 'mk/s.targets.mk.cc'.
     Not found 'mk/s.targets.mk.cc'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.cc'.
     Trying implicit prerequisite 'mk/SCCS/s.targets.mk.cc'.
     Not found 'mk/SCCS/s.targets.mk.cc'.
     Trying harder.
    No implicit rule found for 'mk/targets.mk.cc'.
    Rejecting rule '%.o: %.cc' due to impossible prerequisite 'mk/targets.mk.cc'.
    Trying pattern rule '%.o: %.C' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.C'.
    Looking for a rule with intermediate file 'mk/targets.mk.C'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.C'.
     Trying pattern rule '%:: %,v' with stem 'targets.mk.C'.
     Trying implicit prerequisite 'mk/targets.mk.C,v'.
     Not found 'mk/targets.mk.C,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.C'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.C,v'.
     Not found 'mk/RCS/targets.mk.C,v'.
     Trying pattern rule '%:: RCS/%' with stem 'targets.mk.C'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.C'.
     Not found 'mk/RCS/targets.mk.C'.
     Trying pattern rule '%:: s.%' with stem 'targets.mk.C'.
     Trying implicit prerequisite 'mk/s.targets.mk.C'.
     Not found 'mk/s.targets.mk.C'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.C'.
     Trying implicit prerequisite 'mk/SCCS/s.targets.mk.C'.
     Not found 'mk/SCCS/s.targets.mk.C'.
     Trying harder.
    No implicit rule found for 'mk/targets.mk.C'.
    Rejecting rule '%.o: %.C' due to impossible prerequisite 'mk/targets.mk.C'.
    Trying pattern rule '%.o: %.cpp' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.cpp'.
    Looking for a rule with intermediate file 'mk/targets.mk.cpp'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.cpp'.
     Trying pattern rule '%:: %,v' with stem 'targets.mk.cpp'.
     Trying implicit prerequisite 'mk/targets.mk.cpp,v'.
     Not found 'mk/targets.mk.cpp,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.cpp'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.cpp,v'.
     Not found 'mk/RCS/targets.mk.cpp,v'.
     Trying pattern rule '%:: RCS/%' with stem 'targets.mk.cpp'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.cpp'.
     Not found 'mk/RCS/targets.mk.cpp'.
     Trying pattern rule '%:: s.%' with stem 'targets.mk.cpp'.
     Trying implicit prerequisite 'mk/s.targets.mk.cpp'.
     Not found 'mk/s.targets.mk.cpp'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.cpp'.
     Trying implicit prerequisite 'mk/SCCS/s.targets.mk.cpp'.
     Not found 'mk/SCCS/s.targets.mk.cpp'.
     Trying harder.
    No implicit rule found for 'mk/targets.mk.cpp'.
    Rejecting rule '%.o: %.cpp' due to impossible prerequisite 'mk/targets.mk.cpp'.
    Trying pattern rule '%.o: %.p' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.p'.
    Looking for a rule with intermediate file 'mk/targets.mk.p'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.p'.
     Trying pattern rule '%.p: %.web' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.web'.
     Not found 'mk/targets.mk.web'.
     Trying pattern rule '%:: %,v' with stem 'targets.mk.p'.
     Trying implicit prerequisite 'mk/targets.mk.p,v'.
     Not found 'mk/targets.mk.p,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.p'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.p,v'.
     Not found 'mk/RCS/targets.mk.p,v'.
     Trying pattern rule '%:: RCS/%' with stem 'targets.mk.p'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.p'.
     Not found 'mk/RCS/targets.mk.p'.
     Trying pattern rule '%:: s.%' with stem 'targets.mk.p'.
     Trying implicit prerequisite 'mk/s.targets.mk.p'.
     Not found 'mk/s.targets.mk.p'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.p'.
     Trying implicit prerequisite 'mk/SCCS/s.targets.mk.p'.
     Not found 'mk/SCCS/s.targets.mk.p'.
     Trying harder.
     Trying pattern rule '%.p: %.web' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.web'.
     Looking for a rule with intermediate file 'mk/targets.mk.web'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.p'.
      Avoiding implicit rule recursion for rule '%.p: %.web'.
      Trying pattern rule '%:: %,v' with stem 'targets.mk.web'.
      Trying implicit prerequisite 'mk/targets.mk.web,v'.
      Not found 'mk/targets.mk.web,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.web'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.web,v'.
      Not found 'mk/RCS/targets.mk.web,v'.
      Trying pattern rule '%:: RCS/%' with stem 'targets.mk.web'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.web'.
      Not found 'mk/RCS/targets.mk.web'.
      Trying pattern rule '%:: s.%' with stem 'targets.mk.web'.
      Trying implicit prerequisite 'mk/s.targets.mk.web'.
      Not found 'mk/s.targets.mk.web'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.web'.
      Trying implicit prerequisite 'mk/SCCS/s.targets.mk.web'.
      Not found 'mk/SCCS/s.targets.mk.web'.
      Trying harder.
     No implicit rule found for 'mk/targets.mk.web'.
     Rejecting rule '%.p: %.web' due to impossible prerequisite 'mk/targets.mk.web'.
    No implicit rule found for 'mk/targets.mk.p'.
    Rejecting rule '%.o: %.p' due to impossible prerequisite 'mk/targets.mk.p'.
    Trying pattern rule '%.o: %.f' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.f'.
    Looking for a rule with intermediate file 'mk/targets.mk.f'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.f'.
     Trying pattern rule '%.f: %.F' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.F'.
     Not found 'mk/targets.mk.F'.
     Trying pattern rule '%.f: %.r' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.r'.
     Not found 'mk/targets.mk.r'.
     Trying pattern rule '%:: %,v' with stem 'targets.mk.f'.
     Trying implicit prerequisite 'mk/targets.mk.f,v'.
     Not found 'mk/targets.mk.f,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.f'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.f,v'.
     Not found 'mk/RCS/targets.mk.f,v'.
     Trying pattern rule '%:: RCS/%' with stem 'targets.mk.f'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.f'.
     Not found 'mk/RCS/targets.mk.f'.
     Trying pattern rule '%:: s.%' with stem 'targets.mk.f'.
     Trying implicit prerequisite 'mk/s.targets.mk.f'.
     Not found 'mk/s.targets.mk.f'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.f'.
     Trying implicit prerequisite 'mk/SCCS/s.targets.mk.f'.
     Not found 'mk/SCCS/s.targets.mk.f'.
     Trying harder.
     Trying pattern rule '%.f: %.F' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.F'.
     Looking for a rule with intermediate file 'mk/targets.mk.F'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.f'.
      Avoiding implicit rule recursion for rule '%.f: %.F'.
      Trying pattern rule '%:: %,v' with stem 'targets.mk.F'.
      Trying implicit prerequisite 'mk/targets.mk.F,v'.
      Not found 'mk/targets.mk.F,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.F'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.F,v'.
      Not found 'mk/RCS/targets.mk.F,v'.
      Trying pattern rule '%:: RCS/%' with stem 'targets.mk.F'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.F'.
      Not found 'mk/RCS/targets.mk.F'.
      Trying pattern rule '%:: s.%' with stem 'targets.mk.F'.
      Trying implicit prerequisite 'mk/s.targets.mk.F'.
      Not found 'mk/s.targets.mk.F'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.F'.
      Trying implicit prerequisite 'mk/SCCS/s.targets.mk.F'.
      Not found 'mk/SCCS/s.targets.mk.F'.
      Trying harder.
     No implicit rule found for 'mk/targets.mk.F'.
     Rejecting rule '%.f: %.F' due to impossible prerequisite 'mk/targets.mk.F'.
     Trying pattern rule '%.f: %.r' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.r'.
     Looking for a rule with intermediate file 'mk/targets.mk.r'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.f'.
      Avoiding implicit rule recursion for rule '%.f: %.r'.
      Trying pattern rule '%.r: %.l' with stem 'targets.mk'.
      Rejecting rule '%.r: %.l' due to impossible implicit prerequisite 'mk/targets.mk.l'.
      Trying pattern rule '%:: %,v' with stem 'targets.mk.r'.
      Trying implicit prerequisite 'mk/targets.mk.r,v'.
      Not found 'mk/targets.mk.r,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.r'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.r,v'.
      Not found 'mk/RCS/targets.mk.r,v'.
      Trying pattern rule '%:: RCS/%' with stem 'targets.mk.r'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.r'.
      Not found 'mk/RCS/targets.mk.r'.
      Trying pattern rule '%:: s.%' with stem 'targets.mk.r'.
      Trying implicit prerequisite 'mk/s.targets.mk.r'.
      Not found 'mk/s.targets.mk.r'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.r'.
      Trying implicit prerequisite 'mk/SCCS/s.targets.mk.r'.
      Not found 'mk/SCCS/s.targets.mk.r'.
      Trying harder.
     No implicit rule found for 'mk/targets.mk.r'.
     Rejecting rule '%.f: %.r' due to impossible prerequisite 'mk/targets.mk.r'.
    No implicit rule found for 'mk/targets.mk.f'.
    Rejecting rule '%.o: %.f' due to impossible prerequisite 'mk/targets.mk.f'.
    Trying pattern rule '%.o: %.F' with stem 'targets.mk'.
    Rejecting rule '%.o: %.F' due to impossible implicit prerequisite 'mk/targets.mk.F'.
    Trying pattern rule '%.o: %.m' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.m'.
    Looking for a rule with intermediate file 'mk/targets.mk.m'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.m'.
     Trying pattern rule '%.m: %.ym' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.ym'.
     Not found 'mk/targets.mk.ym'.
     Trying pattern rule '%:: %,v' with stem 'targets.mk.m'.
     Trying implicit prerequisite 'mk/targets.mk.m,v'.
     Not found 'mk/targets.mk.m,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.m'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.m,v'.
     Not found 'mk/RCS/targets.mk.m,v'.
     Trying pattern rule '%:: RCS/%' with stem 'targets.mk.m'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.m'.
     Not found 'mk/RCS/targets.mk.m'.
     Trying pattern rule '%:: s.%' with stem 'targets.mk.m'.
     Trying implicit prerequisite 'mk/s.targets.mk.m'.
     Not found 'mk/s.targets.mk.m'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.m'.
     Trying implicit prerequisite 'mk/SCCS/s.targets.mk.m'.
     Not found 'mk/SCCS/s.targets.mk.m'.
     Trying harder.
     Trying pattern rule '%.m: %.ym' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.ym'.
     Looking for a rule with intermediate file 'mk/targets.mk.ym'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.m'.
      Avoiding implicit rule recursion for rule '%.m: %.ym'.
      Trying pattern rule '%:: %,v' with stem 'targets.mk.ym'.
      Trying implicit prerequisite 'mk/targets.mk.ym,v'.
      Not found 'mk/targets.mk.ym,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.ym'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.ym,v'.
      Not found 'mk/RCS/targets.mk.ym,v'.
      Trying pattern rule '%:: RCS/%' with stem 'targets.mk.ym'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.ym'.
      Not found 'mk/RCS/targets.mk.ym'.
      Trying pattern rule '%:: s.%' with stem 'targets.mk.ym'.
      Trying implicit prerequisite 'mk/s.targets.mk.ym'.
      Not found 'mk/s.targets.mk.ym'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.ym'.
      Trying implicit prerequisite 'mk/SCCS/s.targets.mk.ym'.
      Not found 'mk/SCCS/s.targets.mk.ym'.
      Trying harder.
     No implicit rule found for 'mk/targets.mk.ym'.
     Rejecting rule '%.m: %.ym' due to impossible prerequisite 'mk/targets.mk.ym'.
    No implicit rule found for 'mk/targets.mk.m'.
    Rejecting rule '%.o: %.m' due to impossible prerequisite 'mk/targets.mk.m'.
    Trying pattern rule '%.o: %.r' with stem 'targets.mk'.
    Rejecting rule '%.o: %.r' due to impossible implicit prerequisite 'mk/targets.mk.r'.
    Trying pattern rule '%.o: %.s' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.s'.
    Looking for a rule with intermediate file 'mk/targets.mk.s'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.s'.
     Trying pattern rule '%.s: %.S' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.S'.
     Not found 'mk/targets.mk.S'.
     Trying pattern rule '%:: %,v' with stem 'targets.mk.s'.
     Trying implicit prerequisite 'mk/targets.mk.s,v'.
     Not found 'mk/targets.mk.s,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.s'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.s,v'.
     Not found 'mk/RCS/targets.mk.s,v'.
     Trying pattern rule '%:: RCS/%' with stem 'targets.mk.s'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.s'.
     Not found 'mk/RCS/targets.mk.s'.
     Trying pattern rule '%:: s.%' with stem 'targets.mk.s'.
     Trying implicit prerequisite 'mk/s.targets.mk.s'.
     Not found 'mk/s.targets.mk.s'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.s'.
     Trying implicit prerequisite 'mk/SCCS/s.targets.mk.s'.
     Not found 'mk/SCCS/s.targets.mk.s'.
     Trying harder.
     Trying pattern rule '%.s: %.S' with stem 'targets.mk'.
     Trying implicit prerequisite 'mk/targets.mk.S'.
     Looking for a rule with intermediate file 'mk/targets.mk.S'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.s'.
      Avoiding implicit rule recursion for rule '%.s: %.S'.
      Trying pattern rule '%:: %,v' with stem 'targets.mk.S'.
      Trying implicit prerequisite 'mk/targets.mk.S,v'.
      Not found 'mk/targets.mk.S,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.S'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.S,v'.
      Not found 'mk/RCS/targets.mk.S,v'.
      Trying pattern rule '%:: RCS/%' with stem 'targets.mk.S'.
      Trying implicit prerequisite 'mk/RCS/targets.mk.S'.
      Not found 'mk/RCS/targets.mk.S'.
      Trying pattern rule '%:: s.%' with stem 'targets.mk.S'.
      Trying implicit prerequisite 'mk/s.targets.mk.S'.
      Not found 'mk/s.targets.mk.S'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.S'.
      Trying implicit prerequisite 'mk/SCCS/s.targets.mk.S'.
      Not found 'mk/SCCS/s.targets.mk.S'.
      Trying harder.
     No implicit rule found for 'mk/targets.mk.S'.
     Rejecting rule '%.s: %.S' due to impossible prerequisite 'mk/targets.mk.S'.
    No implicit rule found for 'mk/targets.mk.s'.
    Rejecting rule '%.o: %.s' due to impossible prerequisite 'mk/targets.mk.s'.
    Trying pattern rule '%.o: %.S' with stem 'targets.mk'.
    Rejecting rule '%.o: %.S' due to impossible implicit prerequisite 'mk/targets.mk.S'.
    Trying pattern rule '%.o: %.mod' with stem 'targets.mk'.
    Trying implicit prerequisite 'mk/targets.mk.mod'.
    Looking for a rule with intermediate file 'mk/targets.mk.mod'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.mod'.
     Trying pattern rule '%:: %,v' with stem 'targets.mk.mod'.
     Trying implicit prerequisite 'mk/targets.mk.mod,v'.
     Not found 'mk/targets.mk.mod,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.mod'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.mod,v'.
     Not found 'mk/RCS/targets.mk.mod,v'.
     Trying pattern rule '%:: RCS/%' with stem 'targets.mk.mod'.
     Trying implicit prerequisite 'mk/RCS/targets.mk.mod'.
     Not found 'mk/RCS/targets.mk.mod'.
     Trying pattern rule '%:: s.%' with stem 'targets.mk.mod'.
     Trying implicit prerequisite 'mk/s.targets.mk.mod'.
     Not found 'mk/s.targets.mk.mod'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.mod'.
     Trying implicit prerequisite 'mk/SCCS/s.targets.mk.mod'.
     Not found 'mk/SCCS/s.targets.mk.mod'.
     Trying harder.
    No implicit rule found for 'mk/targets.mk.mod'.
    Rejecting rule '%.o: %.mod' due to impossible prerequisite 'mk/targets.mk.mod'.
   No implicit rule found for 'mk/targets.mk.o'.
   Rejecting rule '%: %.o' due to impossible prerequisite 'mk/targets.mk.o'.
   Trying pattern rule '%: %.c' with stem 'targets.mk'.
   Rejecting rule '%: %.c' due to impossible implicit prerequisite 'mk/targets.mk.c'.
   Trying pattern rule '%: %.cc' with stem 'targets.mk'.
   Rejecting rule '%: %.cc' due to impossible implicit prerequisite 'mk/targets.mk.cc'.
   Trying pattern rule '%: %.C' with stem 'targets.mk'.
   Rejecting rule '%: %.C' due to impossible implicit prerequisite 'mk/targets.mk.C'.
   Trying pattern rule '%: %.cpp' with stem 'targets.mk'.
   Rejecting rule '%: %.cpp' due to impossible implicit prerequisite 'mk/targets.mk.cpp'.
   Trying pattern rule '%: %.p' with stem 'targets.mk'.
   Rejecting rule '%: %.p' due to impossible implicit prerequisite 'mk/targets.mk.p'.
   Trying pattern rule '%: %.f' with stem 'targets.mk'.
   Rejecting rule '%: %.f' due to impossible implicit prerequisite 'mk/targets.mk.f'.
   Trying pattern rule '%: %.F' with stem 'targets.mk'.
   Rejecting rule '%: %.F' due to impossible implicit prerequisite 'mk/targets.mk.F'.
   Trying pattern rule '%: %.m' with stem 'targets.mk'.
   Rejecting rule '%: %.m' due to impossible implicit prerequisite 'mk/targets.mk.m'.
   Trying pattern rule '%: %.r' with stem 'targets.mk'.
   Rejecting rule '%: %.r' due to impossible implicit prerequisite 'mk/targets.mk.r'.
   Trying pattern rule '%: %.s' with stem 'targets.mk'.
   Rejecting rule '%: %.s' due to impossible implicit prerequisite 'mk/targets.mk.s'.
   Trying pattern rule '%: %.S' with stem 'targets.mk'.
   Rejecting rule '%: %.S' due to impossible implicit prerequisite 'mk/targets.mk.S'.
   Trying pattern rule '%: %.mod' with stem 'targets.mk'.
   Rejecting rule '%: %.mod' due to impossible implicit prerequisite 'mk/targets.mk.mod'.
   Trying pattern rule '%: %.sh' with stem 'targets.mk'.
   Trying implicit prerequisite 'mk/targets.mk.sh'.
   Looking for a rule with intermediate file 'mk/targets.mk.sh'.
    Avoiding implicit rule recursion for rule '%: %.sh'.
    Trying pattern rule '%:: %,v' with stem 'targets.mk.sh'.
    Trying implicit prerequisite 'mk/targets.mk.sh,v'.
    Not found 'mk/targets.mk.sh,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'targets.mk.sh'.
    Trying implicit prerequisite 'mk/RCS/targets.mk.sh,v'.
    Not found 'mk/RCS/targets.mk.sh,v'.
    Trying pattern rule '%:: RCS/%' with stem 'targets.mk.sh'.
    Trying implicit prerequisite 'mk/RCS/targets.mk.sh'.
    Not found 'mk/RCS/targets.mk.sh'.
    Trying pattern rule '%:: s.%' with stem 'targets.mk.sh'.
    Trying implicit prerequisite 'mk/s.targets.mk.sh'.
    Not found 'mk/s.targets.mk.sh'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'targets.mk.sh'.
    Trying implicit prerequisite 'mk/SCCS/s.targets.mk.sh'.
    Not found 'mk/SCCS/s.targets.mk.sh'.
    Trying harder.
   No implicit rule found for 'mk/targets.mk.sh'.
   Rejecting rule '%: %.sh' due to impossible prerequisite 'mk/targets.mk.sh'.
  No implicit rule found for 'mk/targets.mk'.
 Finished prerequisites of target file 'mk/targets.mk'.
 No need to remake target 'mk/targets.mk'.
Updating goal targets....
Considering target file 'repro'.
 File 'repro' does not exist.
 Considering target file 'cleanall'.
  File 'cleanall' does not exist.
  Considering target file 'cleandirs'.
   File 'cleandirs' does not exist.
  Finished prerequisites of target file 'cleandirs'.
  Must remake target 'cleandirs'.
mk/targets.mk:133: update target 'cleandirs' due to: target is .PHONY
make -C doc cleanall;  make -C etc cleanall;  make -C lisp cleanall;
Putting child 0x600003238240 (cleandirs) PID 10464 on the chain.
Live child 0x600003238240 (cleandirs) PID 10464 
GNU Make 4.4.1
Built for aarch64-apple-darwin22.3.0
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Reading makefile 'Makefile'...
Updating makefiles....
 Considering target file 'Makefile'.
  Looking for an implicit rule for 'Makefile'.
   Trying pattern rule '%: %.texi org-version.inc' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.texi'.
   Not found 'Makefile.texi'.
   Trying pattern rule '%:: %,v' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile,v'.
   Not found 'Makefile,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'Makefile'.
   Trying implicit prerequisite 'RCS/Makefile,v'.
   Not found 'RCS/Makefile,v'.
   Trying pattern rule '%:: RCS/%' with stem 'Makefile'.
   Trying implicit prerequisite 'RCS/Makefile'.
   Not found 'RCS/Makefile'.
   Trying pattern rule '%:: s.%' with stem 'Makefile'.
   Trying implicit prerequisite 's.Makefile'.
   Not found 's.Makefile'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile'.
   Trying implicit prerequisite 'SCCS/s.Makefile'.
   Not found 'SCCS/s.Makefile'.
   Trying harder.
   Trying pattern rule '%: %.texi org-version.inc' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile.texi'.
   Looking for a rule with intermediate file 'Makefile.texi'.
    Avoiding implicit rule recursion for rule '%: %.texi org-version.inc'.
    Trying pattern rule '%:: %,v' with stem 'Makefile.texi'.
    Trying implicit prerequisite 'Makefile.texi,v'.
    Not found 'Makefile.texi,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'Makefile.texi'.
    Trying implicit prerequisite 'RCS/Makefile.texi,v'.
    Not found 'RCS/Makefile.texi,v'.
    Trying pattern rule '%:: RCS/%' with stem 'Makefile.texi'.
    Trying implicit prerequisite 'RCS/Makefile.texi'.
    Not found 'RCS/Makefile.texi'.
    Trying pattern rule '%:: s.%' with stem 'Makefile.texi'.
    Trying implicit prerequisite 's.Makefile.texi'.
    Not found 's.Makefile.texi'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile.texi'.
    Trying implicit prerequisite 'SCCS/s.Makefile.texi'.
    Not found 'SCCS/s.Makefile.texi'.
    Trying harder.
   No implicit rule found for 'Makefile.texi'.
   Rejecting rule '%: %.texi org-version.inc' due to impossible prerequisite 'Makefile.texi'.
  No implicit rule found for 'Makefile'.
 Finished prerequisites of target file 'Makefile'.
 No need to remake target 'Makefile'.
Updating goal targets....
Considering target file 'cleanall'.
 File 'cleanall' does not exist.
 Considering target file 'clean'.
  File 'clean' does not exist.
 Finished prerequisites of target file 'clean'.
 Must remake target 'clean'.
make[1]: Entering directory '/Users/aavanian/Documents/Admin/dot-files/emacs-profiles/org-test/org-mode/doc'
Makefile:71: update target 'clean' due to: target is .PHONY
rm -f *.pdf *.html *.info *_letter.tex org-version.inc org-version.tex \
      *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs *.toc \
              *.tp *.tps *.vr *.vrs *.log *.ps
Putting child 0x600000744240 (clean) PID 10466 on the chain.
Live child 0x600000744240 (clean) PID 10466 
Reaping winning child 0x600000744240 PID 10466 
Removing child 0x600000744240 PID 10466 from chain.
 Successfully remade target file 'clean'.
Finished prerequisites of target file 'cleanall'.
Must remake target 'cleanall'.
Makefile:75: update target 'cleanall' due to: target is .PHONY
rm -f org.texi orgguide.texi
Putting child 0x600000744240 (cleanall) PID 10467 on the chain.
Live child 0x600000744240 (cleanall) PID 10467 
Reaping winning child 0x600000744240 PID 10467 
rm -fr guide manual
Live child 0x600000744240 (cleanall) PID 10468 
Reaping winning child 0x600000744240 PID 10468 
Removing child 0x600000744240 PID 10468 from chain.
Successfully remade target file 'cleanall'.
make[1]: Leaving directory '/Users/aavanian/Documents/Admin/dot-files/emacs-profiles/org-test/org-mode/doc'
GNU Make 4.4.1
Built for aarch64-apple-darwin22.3.0
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Reading makefile 'Makefile'...
Reading makefile 'local.mk' (search path) (don't care) (no ~ expansion)...
Updating makefiles....
 Considering target file 'Makefile'.
  Looking for an implicit rule for 'Makefile'.
   Trying pattern rule '%:: %,v' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile,v'.
   Not found 'Makefile,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'Makefile'.
   Trying implicit prerequisite 'RCS/Makefile,v'.
   Not found 'RCS/Makefile,v'.
   Trying pattern rule '%:: RCS/%' with stem 'Makefile'.
   Trying implicit prerequisite 'RCS/Makefile'.
   Not found 'RCS/Makefile'.
   Trying pattern rule '%:: s.%' with stem 'Makefile'.
   Trying implicit prerequisite 's.Makefile'.
   Not found 's.Makefile'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile'.
   Trying implicit prerequisite 'SCCS/s.Makefile'.
   Not found 'SCCS/s.Makefile'.
   Trying harder.
  No implicit rule found for 'Makefile'.
 Finished prerequisites of target file 'Makefile'.
 No need to remake target 'Makefile'.
 Considering target file 'local.mk'.
  File 'local.mk' does not exist.
  Looking for an implicit rule for 'local.mk'.
   Trying pattern rule '%:: %,v' with stem 'local.mk'.
   Trying implicit prerequisite 'local.mk,v'.
   Not found 'local.mk,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'local.mk'.
   Trying implicit prerequisite 'RCS/local.mk,v'.
   Not found 'RCS/local.mk,v'.
   Trying pattern rule '%:: RCS/%' with stem 'local.mk'.
   Trying implicit prerequisite 'RCS/local.mk'.
   Not found 'RCS/local.mk'.
   Trying pattern rule '%:: s.%' with stem 'local.mk'.
   Trying implicit prerequisite 's.local.mk'.
   Not found 's.local.mk'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'local.mk'.
   Trying implicit prerequisite 'SCCS/s.local.mk'.
   Not found 'SCCS/s.local.mk'.
   Trying harder.
  No implicit rule found for 'local.mk'.
 Finished prerequisites of target file 'local.mk'.
 Must remake target 'local.mk'.
 Failed to remake target file 'local.mk'.
Updating goal targets....
Considering target file 'cleanall'.
 File 'cleanall' does not exist.
Finished prerequisites of target file 'cleanall'.
Must remake target 'cleanall'.
Successfully remade target file 'cleanall'.
make[1]: Entering directory '/Users/aavanian/Documents/Admin/dot-files/emacs-profiles/org-test/org-mode/etc'
make[1]: Nothing to be done for 'cleanall'.
make[1]: Leaving directory '/Users/aavanian/Documents/Admin/dot-files/emacs-profiles/org-test/org-mode/etc'
GNU Make 4.4.1
Built for aarch64-apple-darwin22.3.0
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Reading makefile 'Makefile'...
Reading makefile 'local.mk' (search path) (don't care) (no ~ expansion)...
Updating makefiles....
 Considering target file 'Makefile'.
  Looking for an implicit rule for 'Makefile'.
   Trying pattern rule '%:: %,v' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile,v'.
   Not found 'Makefile,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'Makefile'.
   Trying implicit prerequisite 'RCS/Makefile,v'.
   Not found 'RCS/Makefile,v'.
   Trying pattern rule '%:: RCS/%' with stem 'Makefile'.
   Trying implicit prerequisite 'RCS/Makefile'.
   Not found 'RCS/Makefile'.
   Trying pattern rule '%:: s.%' with stem 'Makefile'.
   Trying implicit prerequisite 's.Makefile'.
   Not found 's.Makefile'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile'.
   Trying implicit prerequisite 'SCCS/s.Makefile'.
   Not found 'SCCS/s.Makefile'.
   Trying harder.
  No implicit rule found for 'Makefile'.
 Finished prerequisites of target file 'Makefile'.
 No need to remake target 'Makefile'.
 Considering target file 'local.mk'.
  File 'local.mk' does not exist.
  Looking for an implicit rule for 'local.mk'.
   Trying pattern rule '%:: %,v' with stem 'local.mk'.
   Trying implicit prerequisite 'local.mk,v'.
   Not found 'local.mk,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'local.mk'.
   Trying implicit prerequisite 'RCS/local.mk,v'.
   Not found 'RCS/local.mk,v'.
   Trying pattern rule '%:: RCS/%' with stem 'local.mk'.
   Trying implicit prerequisite 'RCS/local.mk'.
   Not found 'RCS/local.mk'.
   Trying pattern rule '%:: s.%' with stem 'local.mk'.
   Trying implicit prerequisite 's.local.mk'.
   Not found 's.local.mk'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'local.mk'.
   Trying implicit prerequisite 'SCCS/s.local.mk'.
   Not found 'SCCS/s.local.mk'.
   Trying harder.
  No implicit rule found for 'local.mk'.
 Finished prerequisites of target file 'local.mk'.
 Must remake target 'local.mk'.
 Failed to remake target file 'local.mk'.
Updating goal targets....
Considering target file 'cleanall'.
 File 'cleanall' does not exist.
Finished prerequisites of target file 'cleanall'.
Target 'cleanall' is double-colon and has no prerequisites.
Must remake target 'cleanall'.
make[1]: Entering directory '/Users/aavanian/Documents/Admin/dot-files/emacs-profiles/org-test/org-mode/lisp'
Makefile:71: update target 'cleanall' due to: target is .PHONY
rm -f org-version.el org-loaddefs.el org-version.elc org-loaddefs.elc org-install.elc
Putting child 0x6000039c42a0 (cleanall) PID 10471 on the chain.
Live child 0x6000039c42a0 (cleanall) PID 10471 
Reaping winning child 0x6000039c42a0 PID 10471 
Removing child 0x6000039c42a0 PID 10471 from chain.
Successfully remade target file 'cleanall'.
Considering target file 'cleanall'.
 File 'cleanall' does not exist.
Finished prerequisites of target file 'cleanall'.
Target 'cleanall' is double-colon and has no prerequisites.
Must remake target 'cleanall'.
Makefile:73: update target 'cleanall' due to: target is .PHONY
rm -f *.elc
Putting child 0x6000039c0060 (cleanall) PID 10472 on the chain.
Live child 0x6000039c0060 (cleanall) PID 10472 
Reaping winning child 0x6000039c0060 PID 10472 
Removing child 0x6000039c0060 PID 10472 from chain.
Successfully remade target file 'cleanall'.
Pruning file 'cleanall'.
make[1]: Leaving directory '/Users/aavanian/Documents/Admin/dot-files/emacs-profiles/org-test/org-mode/lisp'
Reaping winning child 0x600003238240 PID 10464 
Removing child 0x600003238240 PID 10464 from chain.
  Successfully remade target file 'cleandirs'.
  Considering target file 'cleantest'.
   File 'cleantest' does not exist.
  Finished prerequisites of target file 'cleantest'.
  Must remake target 'cleantest'.
mk/targets.mk:158: update target 'cleantest' due to: target is .PHONY
rm -fr /var/folders/9n/slbtj3ln34n2cv02382n6m4h0000gp/T//tmp-orgtest || { \
  find /var/folders/9n/slbtj3ln34n2cv02382n6m4h0000gp/T//tmp-orgtest -type d -exec chmod u+w {} + && \
  rm -fr /var/folders/9n/slbtj3ln34n2cv02382n6m4h0000gp/T//tmp-orgtest ; \
}
Putting child 0x600003234120 (cleantest) PID 10473 on the chain.
Live child 0x600003234120 (cleantest) PID 10473 
Reaping winning child 0x600003234120 PID 10473 
Removing child 0x600003234120 PID 10473 from chain.
  Successfully remade target file 'cleantest'.
 Finished prerequisites of target file 'cleanall'.
 Must remake target 'cleanall'.
mk/targets.mk:138: update target 'cleanall' due to: target is .PHONY
find . \( -name \*~ -o -name \*# -o -name .#\* \) -exec rm -f {} +
Putting child 0x600003234120 (cleanall) PID 10475 on the chain.
Live child 0x600003234120 (cleanall) PID 10475 
Reaping winning child 0x600003234120 PID 10475 
find testing mk \( -name \*~ -o -name \*.elc \) -exec rm -f {} +
Live child 0x600003234120 (cleanall) PID 10476 
Reaping winning child 0x600003234120 PID 10476 
Removing child 0x600003234120 PID 10476 from chain.
 Successfully remade target file 'cleanall'.
 Considering target file 'autoloads'.
  File 'autoloads' does not exist.
  Considering target file 'lisp'.
   File 'lisp' does not exist.
  Finished prerequisites of target file 'lisp'.
  Must remake target 'lisp'.
  Successfully remade target file 'lisp'.
 Finished prerequisites of target file 'autoloads'.
 Must remake target 'autoloads'.
mk/targets.mk:127: update target 'autoloads' due to: target is .PHONY
make -C lisp autoloads
Putting child 0x600003238480 (autoloads) PID 10477 on the chain.
Live child 0x600003238480 (autoloads) PID 10477 
GNU Make 4.4.1
Built for aarch64-apple-darwin22.3.0
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Reading makefile 'Makefile'...
Reading makefile 'local.mk' (search path) (don't care) (no ~ expansion)...
Updating makefiles....
 Considering target file 'Makefile'.
  Looking for an implicit rule for 'Makefile'.
   Trying pattern rule '%:: %,v' with stem 'Makefile'.
   Trying implicit prerequisite 'Makefile,v'.
   Not found 'Makefile,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'Makefile'.
   Trying implicit prerequisite 'RCS/Makefile,v'.
   Not found 'RCS/Makefile,v'.
   Trying pattern rule '%:: RCS/%' with stem 'Makefile'.
   Trying implicit prerequisite 'RCS/Makefile'.
   Not found 'RCS/Makefile'.
   Trying pattern rule '%:: s.%' with stem 'Makefile'.
   Trying implicit prerequisite 's.Makefile'.
   Not found 's.Makefile'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'Makefile'.
   Trying implicit prerequisite 'SCCS/s.Makefile'.
   Not found 'SCCS/s.Makefile'.
   Trying harder.
  No implicit rule found for 'Makefile'.
 Finished prerequisites of target file 'Makefile'.
 No need to remake target 'Makefile'.
 Considering target file 'local.mk'.
  File 'local.mk' does not exist.
  Looking for an implicit rule for 'local.mk'.
   Trying pattern rule '%:: %,v' with stem 'local.mk'.
   Trying implicit prerequisite 'local.mk,v'.
   Not found 'local.mk,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'local.mk'.
   Trying implicit prerequisite 'RCS/local.mk,v'.
   Not found 'RCS/local.mk,v'.
   Trying pattern rule '%:: RCS/%' with stem 'local.mk'.
   Trying implicit prerequisite 'RCS/local.mk'.
   Not found 'RCS/local.mk'.
   Trying pattern rule '%:: s.%' with stem 'local.mk'.
   Trying implicit prerequisite 's.local.mk'.
   Not found 's.local.mk'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'local.mk'.
   Trying implicit prerequisite 'SCCS/s.local.mk'.
   Not found 'SCCS/s.local.mk'.
   Trying harder.
  No implicit rule found for 'local.mk'.
 Finished prerequisites of target file 'local.mk'.
 Must remake target 'local.mk'.
 Failed to remake target file 'local.mk'.
Updating goal targets....
Considering target file 'autoloads'.
 File 'autoloads' does not exist.
 Considering target file 'cleanauto'.
  File 'cleanauto' does not exist.
 Finished prerequisites of target file 'cleanauto'.
 Target 'cleanauto' is double-colon and has no prerequisites.
 Must remake target 'cleanauto'.
make[1]: Entering directory '/Users/aavanian/Documents/Admin/dot-files/emacs-profiles/org-test/org-mode/lisp'
Makefile:71: update target 'cleanauto' due to: target is .PHONY
rm -f org-version.el org-loaddefs.el org-version.elc org-loaddefs.elc org-install.elc
Putting child 0x600000368300 (cleanauto) PID 10478 on the chain.
Live child 0x600000368300 (cleanauto) PID 10478 
Reaping winning child 0x600000368300 PID 10478 
Removing child 0x600000368300 PID 10478 from chain.
 Successfully remade target file 'cleanauto'.
 Considering target file 'org-loaddefs.el'.
  File 'org-loaddefs.el' does not exist.
  Considering target file 'org-version.el'.
   File 'org-version.el' does not exist.
   Considering target file 'ob-C.el'.
    Looking for an implicit rule for 'ob-C.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-C.el'.
Directory . cache invalidated (count 1 != command 2)
     Trying implicit prerequisite 'ob-C.el,v'.
     Not found 'ob-C.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-C.el'.
Directory RCS cache invalidated (count 1 != command 2)
     Trying implicit prerequisite 'RCS/ob-C.el,v'.
     Not found 'RCS/ob-C.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-C.el'.
     Trying implicit prerequisite 'RCS/ob-C.el'.
     Not found 'RCS/ob-C.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-C.el'.
     Trying implicit prerequisite 's.ob-C.el'.
     Not found 's.ob-C.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-C.el'.
Directory SCCS cache invalidated (count 1 != command 2)
     Trying implicit prerequisite 'SCCS/s.ob-C.el'.
     Not found 'SCCS/s.ob-C.el'.
     Trying harder.
    No implicit rule found for 'ob-C.el'.
   Finished prerequisites of target file 'ob-C.el'.
   No need to remake target 'ob-C.el'.
   Considering target file 'ob-R.el'.
    Looking for an implicit rule for 'ob-R.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-R.el'.
     Trying implicit prerequisite 'ob-R.el,v'.
     Not found 'ob-R.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-R.el'.
     Trying implicit prerequisite 'RCS/ob-R.el,v'.
     Not found 'RCS/ob-R.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-R.el'.
     Trying implicit prerequisite 'RCS/ob-R.el'.
     Not found 'RCS/ob-R.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-R.el'.
     Trying implicit prerequisite 's.ob-R.el'.
     Not found 's.ob-R.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-R.el'.
     Trying implicit prerequisite 'SCCS/s.ob-R.el'.
     Not found 'SCCS/s.ob-R.el'.
     Trying harder.
    No implicit rule found for 'ob-R.el'.
   Finished prerequisites of target file 'ob-R.el'.
   No need to remake target 'ob-R.el'.
   Considering target file 'ob-awk.el'.
    Looking for an implicit rule for 'ob-awk.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-awk.el'.
     Trying implicit prerequisite 'ob-awk.el,v'.
     Not found 'ob-awk.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-awk.el'.
     Trying implicit prerequisite 'RCS/ob-awk.el,v'.
     Not found 'RCS/ob-awk.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-awk.el'.
     Trying implicit prerequisite 'RCS/ob-awk.el'.
     Not found 'RCS/ob-awk.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-awk.el'.
     Trying implicit prerequisite 's.ob-awk.el'.
     Not found 's.ob-awk.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-awk.el'.
     Trying implicit prerequisite 'SCCS/s.ob-awk.el'.
     Not found 'SCCS/s.ob-awk.el'.
     Trying harder.
    No implicit rule found for 'ob-awk.el'.
   Finished prerequisites of target file 'ob-awk.el'.
   No need to remake target 'ob-awk.el'.
   Considering target file 'ob-calc.el'.
    Looking for an implicit rule for 'ob-calc.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-calc.el'.
     Trying implicit prerequisite 'ob-calc.el,v'.
     Not found 'ob-calc.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-calc.el'.
     Trying implicit prerequisite 'RCS/ob-calc.el,v'.
     Not found 'RCS/ob-calc.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-calc.el'.
     Trying implicit prerequisite 'RCS/ob-calc.el'.
     Not found 'RCS/ob-calc.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-calc.el'.
     Trying implicit prerequisite 's.ob-calc.el'.
     Not found 's.ob-calc.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-calc.el'.
     Trying implicit prerequisite 'SCCS/s.ob-calc.el'.
     Not found 'SCCS/s.ob-calc.el'.
     Trying harder.
    No implicit rule found for 'ob-calc.el'.
   Finished prerequisites of target file 'ob-calc.el'.
   No need to remake target 'ob-calc.el'.
   Considering target file 'ob-clojure.el'.
    Looking for an implicit rule for 'ob-clojure.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-clojure.el'.
     Trying implicit prerequisite 'ob-clojure.el,v'.
     Not found 'ob-clojure.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-clojure.el'.
     Trying implicit prerequisite 'RCS/ob-clojure.el,v'.
     Not found 'RCS/ob-clojure.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-clojure.el'.
     Trying implicit prerequisite 'RCS/ob-clojure.el'.
     Not found 'RCS/ob-clojure.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-clojure.el'.
     Trying implicit prerequisite 's.ob-clojure.el'.
     Not found 's.ob-clojure.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-clojure.el'.
     Trying implicit prerequisite 'SCCS/s.ob-clojure.el'.
     Not found 'SCCS/s.ob-clojure.el'.
     Trying harder.
    No implicit rule found for 'ob-clojure.el'.
   Finished prerequisites of target file 'ob-clojure.el'.
   No need to remake target 'ob-clojure.el'.
   Considering target file 'ob-comint.el'.
    Looking for an implicit rule for 'ob-comint.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-comint.el'.
     Trying implicit prerequisite 'ob-comint.el,v'.
     Not found 'ob-comint.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-comint.el'.
     Trying implicit prerequisite 'RCS/ob-comint.el,v'.
     Not found 'RCS/ob-comint.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-comint.el'.
     Trying implicit prerequisite 'RCS/ob-comint.el'.
     Not found 'RCS/ob-comint.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-comint.el'.
     Trying implicit prerequisite 's.ob-comint.el'.
     Not found 's.ob-comint.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-comint.el'.
     Trying implicit prerequisite 'SCCS/s.ob-comint.el'.
     Not found 'SCCS/s.ob-comint.el'.
     Trying harder.
    No implicit rule found for 'ob-comint.el'.
   Finished prerequisites of target file 'ob-comint.el'.
   No need to remake target 'ob-comint.el'.
   Considering target file 'ob-core.el'.
    Looking for an implicit rule for 'ob-core.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-core.el'.
     Trying implicit prerequisite 'ob-core.el,v'.
     Not found 'ob-core.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-core.el'.
     Trying implicit prerequisite 'RCS/ob-core.el,v'.
     Not found 'RCS/ob-core.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-core.el'.
     Trying implicit prerequisite 'RCS/ob-core.el'.
     Not found 'RCS/ob-core.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-core.el'.
     Trying implicit prerequisite 's.ob-core.el'.
     Not found 's.ob-core.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-core.el'.
     Trying implicit prerequisite 'SCCS/s.ob-core.el'.
     Not found 'SCCS/s.ob-core.el'.
     Trying harder.
    No implicit rule found for 'ob-core.el'.
   Finished prerequisites of target file 'ob-core.el'.
   No need to remake target 'ob-core.el'.
   Considering target file 'ob-css.el'.
    Looking for an implicit rule for 'ob-css.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-css.el'.
     Trying implicit prerequisite 'ob-css.el,v'.
     Not found 'ob-css.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-css.el'.
     Trying implicit prerequisite 'RCS/ob-css.el,v'.
     Not found 'RCS/ob-css.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-css.el'.
     Trying implicit prerequisite 'RCS/ob-css.el'.
     Not found 'RCS/ob-css.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-css.el'.
     Trying implicit prerequisite 's.ob-css.el'.
     Not found 's.ob-css.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-css.el'.
     Trying implicit prerequisite 'SCCS/s.ob-css.el'.
     Not found 'SCCS/s.ob-css.el'.
     Trying harder.
    No implicit rule found for 'ob-css.el'.
   Finished prerequisites of target file 'ob-css.el'.
   No need to remake target 'ob-css.el'.
   Considering target file 'ob-ditaa.el'.
    Looking for an implicit rule for 'ob-ditaa.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-ditaa.el'.
     Trying implicit prerequisite 'ob-ditaa.el,v'.
     Not found 'ob-ditaa.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-ditaa.el'.
     Trying implicit prerequisite 'RCS/ob-ditaa.el,v'.
     Not found 'RCS/ob-ditaa.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-ditaa.el'.
     Trying implicit prerequisite 'RCS/ob-ditaa.el'.
     Not found 'RCS/ob-ditaa.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-ditaa.el'.
     Trying implicit prerequisite 's.ob-ditaa.el'.
     Not found 's.ob-ditaa.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-ditaa.el'.
     Trying implicit prerequisite 'SCCS/s.ob-ditaa.el'.
     Not found 'SCCS/s.ob-ditaa.el'.
     Trying harder.
    No implicit rule found for 'ob-ditaa.el'.
   Finished prerequisites of target file 'ob-ditaa.el'.
   No need to remake target 'ob-ditaa.el'.
   Considering target file 'ob-dot.el'.
    Looking for an implicit rule for 'ob-dot.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-dot.el'.
     Trying implicit prerequisite 'ob-dot.el,v'.
     Not found 'ob-dot.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-dot.el'.
     Trying implicit prerequisite 'RCS/ob-dot.el,v'.
     Not found 'RCS/ob-dot.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-dot.el'.
     Trying implicit prerequisite 'RCS/ob-dot.el'.
     Not found 'RCS/ob-dot.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-dot.el'.
     Trying implicit prerequisite 's.ob-dot.el'.
     Not found 's.ob-dot.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-dot.el'.
     Trying implicit prerequisite 'SCCS/s.ob-dot.el'.
     Not found 'SCCS/s.ob-dot.el'.
     Trying harder.
    No implicit rule found for 'ob-dot.el'.
   Finished prerequisites of target file 'ob-dot.el'.
   No need to remake target 'ob-dot.el'.
   Considering target file 'ob-emacs-lisp.el'.
    Looking for an implicit rule for 'ob-emacs-lisp.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-emacs-lisp.el'.
     Trying implicit prerequisite 'ob-emacs-lisp.el,v'.
     Not found 'ob-emacs-lisp.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-emacs-lisp.el'.
     Trying implicit prerequisite 'RCS/ob-emacs-lisp.el,v'.
     Not found 'RCS/ob-emacs-lisp.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-emacs-lisp.el'.
     Trying implicit prerequisite 'RCS/ob-emacs-lisp.el'.
     Not found 'RCS/ob-emacs-lisp.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-emacs-lisp.el'.
     Trying implicit prerequisite 's.ob-emacs-lisp.el'.
     Not found 's.ob-emacs-lisp.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-emacs-lisp.el'.
     Trying implicit prerequisite 'SCCS/s.ob-emacs-lisp.el'.
     Not found 'SCCS/s.ob-emacs-lisp.el'.
     Trying harder.
    No implicit rule found for 'ob-emacs-lisp.el'.
   Finished prerequisites of target file 'ob-emacs-lisp.el'.
   No need to remake target 'ob-emacs-lisp.el'.
   Considering target file 'ob-eshell.el'.
    Looking for an implicit rule for 'ob-eshell.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-eshell.el'.
     Trying implicit prerequisite 'ob-eshell.el,v'.
     Not found 'ob-eshell.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-eshell.el'.
     Trying implicit prerequisite 'RCS/ob-eshell.el,v'.
     Not found 'RCS/ob-eshell.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-eshell.el'.
     Trying implicit prerequisite 'RCS/ob-eshell.el'.
     Not found 'RCS/ob-eshell.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-eshell.el'.
     Trying implicit prerequisite 's.ob-eshell.el'.
     Not found 's.ob-eshell.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-eshell.el'.
     Trying implicit prerequisite 'SCCS/s.ob-eshell.el'.
     Not found 'SCCS/s.ob-eshell.el'.
     Trying harder.
    No implicit rule found for 'ob-eshell.el'.
   Finished prerequisites of target file 'ob-eshell.el'.
   No need to remake target 'ob-eshell.el'.
   Considering target file 'ob-eval.el'.
    Looking for an implicit rule for 'ob-eval.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-eval.el'.
     Trying implicit prerequisite 'ob-eval.el,v'.
     Not found 'ob-eval.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-eval.el'.
     Trying implicit prerequisite 'RCS/ob-eval.el,v'.
     Not found 'RCS/ob-eval.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-eval.el'.
     Trying implicit prerequisite 'RCS/ob-eval.el'.
     Not found 'RCS/ob-eval.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-eval.el'.
     Trying implicit prerequisite 's.ob-eval.el'.
     Not found 's.ob-eval.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-eval.el'.
     Trying implicit prerequisite 'SCCS/s.ob-eval.el'.
     Not found 'SCCS/s.ob-eval.el'.
     Trying harder.
    No implicit rule found for 'ob-eval.el'.
   Finished prerequisites of target file 'ob-eval.el'.
   No need to remake target 'ob-eval.el'.
   Considering target file 'ob-exp.el'.
    Looking for an implicit rule for 'ob-exp.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-exp.el'.
     Trying implicit prerequisite 'ob-exp.el,v'.
     Not found 'ob-exp.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-exp.el'.
     Trying implicit prerequisite 'RCS/ob-exp.el,v'.
     Not found 'RCS/ob-exp.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-exp.el'.
     Trying implicit prerequisite 'RCS/ob-exp.el'.
     Not found 'RCS/ob-exp.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-exp.el'.
     Trying implicit prerequisite 's.ob-exp.el'.
     Not found 's.ob-exp.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-exp.el'.
     Trying implicit prerequisite 'SCCS/s.ob-exp.el'.
     Not found 'SCCS/s.ob-exp.el'.
     Trying harder.
    No implicit rule found for 'ob-exp.el'.
   Finished prerequisites of target file 'ob-exp.el'.
   No need to remake target 'ob-exp.el'.
   Considering target file 'ob-forth.el'.
    Looking for an implicit rule for 'ob-forth.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-forth.el'.
     Trying implicit prerequisite 'ob-forth.el,v'.
     Not found 'ob-forth.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-forth.el'.
     Trying implicit prerequisite 'RCS/ob-forth.el,v'.
     Not found 'RCS/ob-forth.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-forth.el'.
     Trying implicit prerequisite 'RCS/ob-forth.el'.
     Not found 'RCS/ob-forth.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-forth.el'.
     Trying implicit prerequisite 's.ob-forth.el'.
     Not found 's.ob-forth.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-forth.el'.
     Trying implicit prerequisite 'SCCS/s.ob-forth.el'.
     Not found 'SCCS/s.ob-forth.el'.
     Trying harder.
    No implicit rule found for 'ob-forth.el'.
   Finished prerequisites of target file 'ob-forth.el'.
   No need to remake target 'ob-forth.el'.
   Considering target file 'ob-fortran.el'.
    Looking for an implicit rule for 'ob-fortran.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-fortran.el'.
     Trying implicit prerequisite 'ob-fortran.el,v'.
     Not found 'ob-fortran.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-fortran.el'.
     Trying implicit prerequisite 'RCS/ob-fortran.el,v'.
     Not found 'RCS/ob-fortran.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-fortran.el'.
     Trying implicit prerequisite 'RCS/ob-fortran.el'.
     Not found 'RCS/ob-fortran.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-fortran.el'.
     Trying implicit prerequisite 's.ob-fortran.el'.
     Not found 's.ob-fortran.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-fortran.el'.
     Trying implicit prerequisite 'SCCS/s.ob-fortran.el'.
     Not found 'SCCS/s.ob-fortran.el'.
     Trying harder.
    No implicit rule found for 'ob-fortran.el'.
   Finished prerequisites of target file 'ob-fortran.el'.
   No need to remake target 'ob-fortran.el'.
   Considering target file 'ob-gnuplot.el'.
    Looking for an implicit rule for 'ob-gnuplot.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-gnuplot.el'.
     Trying implicit prerequisite 'ob-gnuplot.el,v'.
     Not found 'ob-gnuplot.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-gnuplot.el'.
     Trying implicit prerequisite 'RCS/ob-gnuplot.el,v'.
     Not found 'RCS/ob-gnuplot.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-gnuplot.el'.
     Trying implicit prerequisite 'RCS/ob-gnuplot.el'.
     Not found 'RCS/ob-gnuplot.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-gnuplot.el'.
     Trying implicit prerequisite 's.ob-gnuplot.el'.
     Not found 's.ob-gnuplot.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-gnuplot.el'.
     Trying implicit prerequisite 'SCCS/s.ob-gnuplot.el'.
     Not found 'SCCS/s.ob-gnuplot.el'.
     Trying harder.
    No implicit rule found for 'ob-gnuplot.el'.
   Finished prerequisites of target file 'ob-gnuplot.el'.
   No need to remake target 'ob-gnuplot.el'.
   Considering target file 'ob-groovy.el'.
    Looking for an implicit rule for 'ob-groovy.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-groovy.el'.
     Trying implicit prerequisite 'ob-groovy.el,v'.
     Not found 'ob-groovy.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-groovy.el'.
     Trying implicit prerequisite 'RCS/ob-groovy.el,v'.
     Not found 'RCS/ob-groovy.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-groovy.el'.
     Trying implicit prerequisite 'RCS/ob-groovy.el'.
     Not found 'RCS/ob-groovy.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-groovy.el'.
     Trying implicit prerequisite 's.ob-groovy.el'.
     Not found 's.ob-groovy.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-groovy.el'.
     Trying implicit prerequisite 'SCCS/s.ob-groovy.el'.
     Not found 'SCCS/s.ob-groovy.el'.
     Trying harder.
    No implicit rule found for 'ob-groovy.el'.
   Finished prerequisites of target file 'ob-groovy.el'.
   No need to remake target 'ob-groovy.el'.
   Considering target file 'ob-haskell.el'.
    Looking for an implicit rule for 'ob-haskell.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-haskell.el'.
     Trying implicit prerequisite 'ob-haskell.el,v'.
     Not found 'ob-haskell.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-haskell.el'.
     Trying implicit prerequisite 'RCS/ob-haskell.el,v'.
     Not found 'RCS/ob-haskell.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-haskell.el'.
     Trying implicit prerequisite 'RCS/ob-haskell.el'.
     Not found 'RCS/ob-haskell.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-haskell.el'.
     Trying implicit prerequisite 's.ob-haskell.el'.
     Not found 's.ob-haskell.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-haskell.el'.
     Trying implicit prerequisite 'SCCS/s.ob-haskell.el'.
     Not found 'SCCS/s.ob-haskell.el'.
     Trying harder.
    No implicit rule found for 'ob-haskell.el'.
   Finished prerequisites of target file 'ob-haskell.el'.
   No need to remake target 'ob-haskell.el'.
   Considering target file 'ob-java.el'.
    Looking for an implicit rule for 'ob-java.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-java.el'.
     Trying implicit prerequisite 'ob-java.el,v'.
     Not found 'ob-java.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-java.el'.
     Trying implicit prerequisite 'RCS/ob-java.el,v'.
     Not found 'RCS/ob-java.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-java.el'.
     Trying implicit prerequisite 'RCS/ob-java.el'.
     Not found 'RCS/ob-java.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-java.el'.
     Trying implicit prerequisite 's.ob-java.el'.
     Not found 's.ob-java.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-java.el'.
     Trying implicit prerequisite 'SCCS/s.ob-java.el'.
     Not found 'SCCS/s.ob-java.el'.
     Trying harder.
    No implicit rule found for 'ob-java.el'.
   Finished prerequisites of target file 'ob-java.el'.
   No need to remake target 'ob-java.el'.
   Considering target file 'ob-js.el'.
    Looking for an implicit rule for 'ob-js.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-js.el'.
     Trying implicit prerequisite 'ob-js.el,v'.
     Not found 'ob-js.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-js.el'.
     Trying implicit prerequisite 'RCS/ob-js.el,v'.
     Not found 'RCS/ob-js.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-js.el'.
     Trying implicit prerequisite 'RCS/ob-js.el'.
     Not found 'RCS/ob-js.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-js.el'.
     Trying implicit prerequisite 's.ob-js.el'.
     Not found 's.ob-js.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-js.el'.
     Trying implicit prerequisite 'SCCS/s.ob-js.el'.
     Not found 'SCCS/s.ob-js.el'.
     Trying harder.
    No implicit rule found for 'ob-js.el'.
   Finished prerequisites of target file 'ob-js.el'.
   No need to remake target 'ob-js.el'.
   Considering target file 'ob-julia.el'.
    Looking for an implicit rule for 'ob-julia.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-julia.el'.
     Trying implicit prerequisite 'ob-julia.el,v'.
     Not found 'ob-julia.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-julia.el'.
     Trying implicit prerequisite 'RCS/ob-julia.el,v'.
     Not found 'RCS/ob-julia.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-julia.el'.
     Trying implicit prerequisite 'RCS/ob-julia.el'.
     Not found 'RCS/ob-julia.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-julia.el'.
     Trying implicit prerequisite 's.ob-julia.el'.
     Not found 's.ob-julia.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-julia.el'.
     Trying implicit prerequisite 'SCCS/s.ob-julia.el'.
     Not found 'SCCS/s.ob-julia.el'.
     Trying harder.
    No implicit rule found for 'ob-julia.el'.
   Finished prerequisites of target file 'ob-julia.el'.
   No need to remake target 'ob-julia.el'.
   Considering target file 'ob-latex.el'.
    Looking for an implicit rule for 'ob-latex.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-latex.el'.
     Trying implicit prerequisite 'ob-latex.el,v'.
     Not found 'ob-latex.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-latex.el'.
     Trying implicit prerequisite 'RCS/ob-latex.el,v'.
     Not found 'RCS/ob-latex.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-latex.el'.
     Trying implicit prerequisite 'RCS/ob-latex.el'.
     Not found 'RCS/ob-latex.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-latex.el'.
     Trying implicit prerequisite 's.ob-latex.el'.
     Not found 's.ob-latex.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-latex.el'.
     Trying implicit prerequisite 'SCCS/s.ob-latex.el'.
     Not found 'SCCS/s.ob-latex.el'.
     Trying harder.
    No implicit rule found for 'ob-latex.el'.
   Finished prerequisites of target file 'ob-latex.el'.
   No need to remake target 'ob-latex.el'.
   Considering target file 'ob-lilypond.el'.
    Looking for an implicit rule for 'ob-lilypond.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-lilypond.el'.
     Trying implicit prerequisite 'ob-lilypond.el,v'.
     Not found 'ob-lilypond.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-lilypond.el'.
     Trying implicit prerequisite 'RCS/ob-lilypond.el,v'.
     Not found 'RCS/ob-lilypond.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-lilypond.el'.
     Trying implicit prerequisite 'RCS/ob-lilypond.el'.
     Not found 'RCS/ob-lilypond.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-lilypond.el'.
     Trying implicit prerequisite 's.ob-lilypond.el'.
     Not found 's.ob-lilypond.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-lilypond.el'.
     Trying implicit prerequisite 'SCCS/s.ob-lilypond.el'.
     Not found 'SCCS/s.ob-lilypond.el'.
     Trying harder.
    No implicit rule found for 'ob-lilypond.el'.
   Finished prerequisites of target file 'ob-lilypond.el'.
   No need to remake target 'ob-lilypond.el'.
   Considering target file 'ob-lisp.el'.
    Looking for an implicit rule for 'ob-lisp.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-lisp.el'.
     Trying implicit prerequisite 'ob-lisp.el,v'.
     Not found 'ob-lisp.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-lisp.el'.
     Trying implicit prerequisite 'RCS/ob-lisp.el,v'.
     Not found 'RCS/ob-lisp.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-lisp.el'.
     Trying implicit prerequisite 'RCS/ob-lisp.el'.
     Not found 'RCS/ob-lisp.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-lisp.el'.
     Trying implicit prerequisite 's.ob-lisp.el'.
     Not found 's.ob-lisp.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-lisp.el'.
     Trying implicit prerequisite 'SCCS/s.ob-lisp.el'.
     Not found 'SCCS/s.ob-lisp.el'.
     Trying harder.
    No implicit rule found for 'ob-lisp.el'.
   Finished prerequisites of target file 'ob-lisp.el'.
   No need to remake target 'ob-lisp.el'.
   Considering target file 'ob-lob.el'.
    Looking for an implicit rule for 'ob-lob.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-lob.el'.
     Trying implicit prerequisite 'ob-lob.el,v'.
     Not found 'ob-lob.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-lob.el'.
     Trying implicit prerequisite 'RCS/ob-lob.el,v'.
     Not found 'RCS/ob-lob.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-lob.el'.
     Trying implicit prerequisite 'RCS/ob-lob.el'.
     Not found 'RCS/ob-lob.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-lob.el'.
     Trying implicit prerequisite 's.ob-lob.el'.
     Not found 's.ob-lob.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-lob.el'.
     Trying implicit prerequisite 'SCCS/s.ob-lob.el'.
     Not found 'SCCS/s.ob-lob.el'.
     Trying harder.
    No implicit rule found for 'ob-lob.el'.
   Finished prerequisites of target file 'ob-lob.el'.
   No need to remake target 'ob-lob.el'.
   Considering target file 'ob-lua.el'.
    Looking for an implicit rule for 'ob-lua.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-lua.el'.
     Trying implicit prerequisite 'ob-lua.el,v'.
     Not found 'ob-lua.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-lua.el'.
     Trying implicit prerequisite 'RCS/ob-lua.el,v'.
     Not found 'RCS/ob-lua.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-lua.el'.
     Trying implicit prerequisite 'RCS/ob-lua.el'.
     Not found 'RCS/ob-lua.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-lua.el'.
     Trying implicit prerequisite 's.ob-lua.el'.
     Not found 's.ob-lua.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-lua.el'.
     Trying implicit prerequisite 'SCCS/s.ob-lua.el'.
     Not found 'SCCS/s.ob-lua.el'.
     Trying harder.
    No implicit rule found for 'ob-lua.el'.
   Finished prerequisites of target file 'ob-lua.el'.
   No need to remake target 'ob-lua.el'.
   Considering target file 'ob-makefile.el'.
    Looking for an implicit rule for 'ob-makefile.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-makefile.el'.
     Trying implicit prerequisite 'ob-makefile.el,v'.
     Not found 'ob-makefile.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-makefile.el'.
     Trying implicit prerequisite 'RCS/ob-makefile.el,v'.
     Not found 'RCS/ob-makefile.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-makefile.el'.
     Trying implicit prerequisite 'RCS/ob-makefile.el'.
     Not found 'RCS/ob-makefile.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-makefile.el'.
     Trying implicit prerequisite 's.ob-makefile.el'.
     Not found 's.ob-makefile.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-makefile.el'.
     Trying implicit prerequisite 'SCCS/s.ob-makefile.el'.
     Not found 'SCCS/s.ob-makefile.el'.
     Trying harder.
    No implicit rule found for 'ob-makefile.el'.
   Finished prerequisites of target file 'ob-makefile.el'.
   No need to remake target 'ob-makefile.el'.
   Considering target file 'ob-matlab.el'.
    Looking for an implicit rule for 'ob-matlab.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-matlab.el'.
     Trying implicit prerequisite 'ob-matlab.el,v'.
     Not found 'ob-matlab.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-matlab.el'.
     Trying implicit prerequisite 'RCS/ob-matlab.el,v'.
     Not found 'RCS/ob-matlab.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-matlab.el'.
     Trying implicit prerequisite 'RCS/ob-matlab.el'.
     Not found 'RCS/ob-matlab.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-matlab.el'.
     Trying implicit prerequisite 's.ob-matlab.el'.
     Not found 's.ob-matlab.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-matlab.el'.
     Trying implicit prerequisite 'SCCS/s.ob-matlab.el'.
     Not found 'SCCS/s.ob-matlab.el'.
     Trying harder.
    No implicit rule found for 'ob-matlab.el'.
   Finished prerequisites of target file 'ob-matlab.el'.
   No need to remake target 'ob-matlab.el'.
   Considering target file 'ob-maxima.el'.
    Looking for an implicit rule for 'ob-maxima.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-maxima.el'.
     Trying implicit prerequisite 'ob-maxima.el,v'.
     Not found 'ob-maxima.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-maxima.el'.
     Trying implicit prerequisite 'RCS/ob-maxima.el,v'.
     Not found 'RCS/ob-maxima.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-maxima.el'.
     Trying implicit prerequisite 'RCS/ob-maxima.el'.
     Not found 'RCS/ob-maxima.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-maxima.el'.
     Trying implicit prerequisite 's.ob-maxima.el'.
     Not found 's.ob-maxima.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-maxima.el'.
     Trying implicit prerequisite 'SCCS/s.ob-maxima.el'.
     Not found 'SCCS/s.ob-maxima.el'.
     Trying harder.
    No implicit rule found for 'ob-maxima.el'.
   Finished prerequisites of target file 'ob-maxima.el'.
   No need to remake target 'ob-maxima.el'.
   Considering target file 'ob-ocaml.el'.
    Looking for an implicit rule for 'ob-ocaml.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-ocaml.el'.
     Trying implicit prerequisite 'ob-ocaml.el,v'.
     Not found 'ob-ocaml.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-ocaml.el'.
     Trying implicit prerequisite 'RCS/ob-ocaml.el,v'.
     Not found 'RCS/ob-ocaml.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-ocaml.el'.
     Trying implicit prerequisite 'RCS/ob-ocaml.el'.
     Not found 'RCS/ob-ocaml.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-ocaml.el'.
     Trying implicit prerequisite 's.ob-ocaml.el'.
     Not found 's.ob-ocaml.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-ocaml.el'.
     Trying implicit prerequisite 'SCCS/s.ob-ocaml.el'.
     Not found 'SCCS/s.ob-ocaml.el'.
     Trying harder.
    No implicit rule found for 'ob-ocaml.el'.
   Finished prerequisites of target file 'ob-ocaml.el'.
   No need to remake target 'ob-ocaml.el'.
   Considering target file 'ob-octave.el'.
    Looking for an implicit rule for 'ob-octave.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-octave.el'.
     Trying implicit prerequisite 'ob-octave.el,v'.
     Not found 'ob-octave.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-octave.el'.
     Trying implicit prerequisite 'RCS/ob-octave.el,v'.
     Not found 'RCS/ob-octave.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-octave.el'.
     Trying implicit prerequisite 'RCS/ob-octave.el'.
     Not found 'RCS/ob-octave.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-octave.el'.
     Trying implicit prerequisite 's.ob-octave.el'.
     Not found 's.ob-octave.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-octave.el'.
     Trying implicit prerequisite 'SCCS/s.ob-octave.el'.
     Not found 'SCCS/s.ob-octave.el'.
     Trying harder.
    No implicit rule found for 'ob-octave.el'.
   Finished prerequisites of target file 'ob-octave.el'.
   No need to remake target 'ob-octave.el'.
   Considering target file 'ob-org.el'.
    Looking for an implicit rule for 'ob-org.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-org.el'.
     Trying implicit prerequisite 'ob-org.el,v'.
     Not found 'ob-org.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-org.el'.
     Trying implicit prerequisite 'RCS/ob-org.el,v'.
     Not found 'RCS/ob-org.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-org.el'.
     Trying implicit prerequisite 'RCS/ob-org.el'.
     Not found 'RCS/ob-org.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-org.el'.
     Trying implicit prerequisite 's.ob-org.el'.
     Not found 's.ob-org.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-org.el'.
     Trying implicit prerequisite 'SCCS/s.ob-org.el'.
     Not found 'SCCS/s.ob-org.el'.
     Trying harder.
    No implicit rule found for 'ob-org.el'.
   Finished prerequisites of target file 'ob-org.el'.
   No need to remake target 'ob-org.el'.
   Considering target file 'ob-perl.el'.
    Looking for an implicit rule for 'ob-perl.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-perl.el'.
     Trying implicit prerequisite 'ob-perl.el,v'.
     Not found 'ob-perl.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-perl.el'.
     Trying implicit prerequisite 'RCS/ob-perl.el,v'.
     Not found 'RCS/ob-perl.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-perl.el'.
     Trying implicit prerequisite 'RCS/ob-perl.el'.
     Not found 'RCS/ob-perl.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-perl.el'.
     Trying implicit prerequisite 's.ob-perl.el'.
     Not found 's.ob-perl.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-perl.el'.
     Trying implicit prerequisite 'SCCS/s.ob-perl.el'.
     Not found 'SCCS/s.ob-perl.el'.
     Trying harder.
    No implicit rule found for 'ob-perl.el'.
   Finished prerequisites of target file 'ob-perl.el'.
   No need to remake target 'ob-perl.el'.
   Considering target file 'ob-plantuml.el'.
    Looking for an implicit rule for 'ob-plantuml.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-plantuml.el'.
     Trying implicit prerequisite 'ob-plantuml.el,v'.
     Not found 'ob-plantuml.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-plantuml.el'.
     Trying implicit prerequisite 'RCS/ob-plantuml.el,v'.
     Not found 'RCS/ob-plantuml.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-plantuml.el'.
     Trying implicit prerequisite 'RCS/ob-plantuml.el'.
     Not found 'RCS/ob-plantuml.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-plantuml.el'.
     Trying implicit prerequisite 's.ob-plantuml.el'.
     Not found 's.ob-plantuml.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-plantuml.el'.
     Trying implicit prerequisite 'SCCS/s.ob-plantuml.el'.
     Not found 'SCCS/s.ob-plantuml.el'.
     Trying harder.
    No implicit rule found for 'ob-plantuml.el'.
   Finished prerequisites of target file 'ob-plantuml.el'.
   No need to remake target 'ob-plantuml.el'.
   Considering target file 'ob-processing.el'.
    Looking for an implicit rule for 'ob-processing.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-processing.el'.
     Trying implicit prerequisite 'ob-processing.el,v'.
     Not found 'ob-processing.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-processing.el'.
     Trying implicit prerequisite 'RCS/ob-processing.el,v'.
     Not found 'RCS/ob-processing.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-processing.el'.
     Trying implicit prerequisite 'RCS/ob-processing.el'.
     Not found 'RCS/ob-processing.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-processing.el'.
     Trying implicit prerequisite 's.ob-processing.el'.
     Not found 's.ob-processing.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-processing.el'.
     Trying implicit prerequisite 'SCCS/s.ob-processing.el'.
     Not found 'SCCS/s.ob-processing.el'.
     Trying harder.
    No implicit rule found for 'ob-processing.el'.
   Finished prerequisites of target file 'ob-processing.el'.
   No need to remake target 'ob-processing.el'.
   Considering target file 'ob-python.el'.
    Looking for an implicit rule for 'ob-python.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-python.el'.
     Trying implicit prerequisite 'ob-python.el,v'.
     Not found 'ob-python.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-python.el'.
     Trying implicit prerequisite 'RCS/ob-python.el,v'.
     Not found 'RCS/ob-python.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-python.el'.
     Trying implicit prerequisite 'RCS/ob-python.el'.
     Not found 'RCS/ob-python.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-python.el'.
     Trying implicit prerequisite 's.ob-python.el'.
     Not found 's.ob-python.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-python.el'.
     Trying implicit prerequisite 'SCCS/s.ob-python.el'.
     Not found 'SCCS/s.ob-python.el'.
     Trying harder.
    No implicit rule found for 'ob-python.el'.
   Finished prerequisites of target file 'ob-python.el'.
   No need to remake target 'ob-python.el'.
   Considering target file 'ob-ref.el'.
    Looking for an implicit rule for 'ob-ref.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-ref.el'.
     Trying implicit prerequisite 'ob-ref.el,v'.
     Not found 'ob-ref.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-ref.el'.
     Trying implicit prerequisite 'RCS/ob-ref.el,v'.
     Not found 'RCS/ob-ref.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-ref.el'.
     Trying implicit prerequisite 'RCS/ob-ref.el'.
     Not found 'RCS/ob-ref.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-ref.el'.
     Trying implicit prerequisite 's.ob-ref.el'.
     Not found 's.ob-ref.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-ref.el'.
     Trying implicit prerequisite 'SCCS/s.ob-ref.el'.
     Not found 'SCCS/s.ob-ref.el'.
     Trying harder.
    No implicit rule found for 'ob-ref.el'.
   Finished prerequisites of target file 'ob-ref.el'.
   No need to remake target 'ob-ref.el'.
   Considering target file 'ob-ruby.el'.
    Looking for an implicit rule for 'ob-ruby.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-ruby.el'.
     Trying implicit prerequisite 'ob-ruby.el,v'.
     Not found 'ob-ruby.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-ruby.el'.
     Trying implicit prerequisite 'RCS/ob-ruby.el,v'.
     Not found 'RCS/ob-ruby.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-ruby.el'.
     Trying implicit prerequisite 'RCS/ob-ruby.el'.
     Not found 'RCS/ob-ruby.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-ruby.el'.
     Trying implicit prerequisite 's.ob-ruby.el'.
     Not found 's.ob-ruby.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-ruby.el'.
     Trying implicit prerequisite 'SCCS/s.ob-ruby.el'.
     Not found 'SCCS/s.ob-ruby.el'.
     Trying harder.
    No implicit rule found for 'ob-ruby.el'.
   Finished prerequisites of target file 'ob-ruby.el'.
   No need to remake target 'ob-ruby.el'.
   Considering target file 'ob-sass.el'.
    Looking for an implicit rule for 'ob-sass.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-sass.el'.
     Trying implicit prerequisite 'ob-sass.el,v'.
     Not found 'ob-sass.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-sass.el'.
     Trying implicit prerequisite 'RCS/ob-sass.el,v'.
     Not found 'RCS/ob-sass.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-sass.el'.
     Trying implicit prerequisite 'RCS/ob-sass.el'.
     Not found 'RCS/ob-sass.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-sass.el'.
     Trying implicit prerequisite 's.ob-sass.el'.
     Not found 's.ob-sass.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-sass.el'.
     Trying implicit prerequisite 'SCCS/s.ob-sass.el'.
     Not found 'SCCS/s.ob-sass.el'.
     Trying harder.
    No implicit rule found for 'ob-sass.el'.
   Finished prerequisites of target file 'ob-sass.el'.
   No need to remake target 'ob-sass.el'.
   Considering target file 'ob-scheme.el'.
    Looking for an implicit rule for 'ob-scheme.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-scheme.el'.
     Trying implicit prerequisite 'ob-scheme.el,v'.
     Not found 'ob-scheme.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-scheme.el'.
     Trying implicit prerequisite 'RCS/ob-scheme.el,v'.
     Not found 'RCS/ob-scheme.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-scheme.el'.
     Trying implicit prerequisite 'RCS/ob-scheme.el'.
     Not found 'RCS/ob-scheme.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-scheme.el'.
     Trying implicit prerequisite 's.ob-scheme.el'.
     Not found 's.ob-scheme.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-scheme.el'.
     Trying implicit prerequisite 'SCCS/s.ob-scheme.el'.
     Not found 'SCCS/s.ob-scheme.el'.
     Trying harder.
    No implicit rule found for 'ob-scheme.el'.
   Finished prerequisites of target file 'ob-scheme.el'.
   No need to remake target 'ob-scheme.el'.
   Considering target file 'ob-screen.el'.
    Looking for an implicit rule for 'ob-screen.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-screen.el'.
     Trying implicit prerequisite 'ob-screen.el,v'.
     Not found 'ob-screen.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-screen.el'.
     Trying implicit prerequisite 'RCS/ob-screen.el,v'.
     Not found 'RCS/ob-screen.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-screen.el'.
     Trying implicit prerequisite 'RCS/ob-screen.el'.
     Not found 'RCS/ob-screen.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-screen.el'.
     Trying implicit prerequisite 's.ob-screen.el'.
     Not found 's.ob-screen.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-screen.el'.
     Trying implicit prerequisite 'SCCS/s.ob-screen.el'.
     Not found 'SCCS/s.ob-screen.el'.
     Trying harder.
    No implicit rule found for 'ob-screen.el'.
   Finished prerequisites of target file 'ob-screen.el'.
   No need to remake target 'ob-screen.el'.
   Considering target file 'ob-sed.el'.
    Looking for an implicit rule for 'ob-sed.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-sed.el'.
     Trying implicit prerequisite 'ob-sed.el,v'.
     Not found 'ob-sed.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-sed.el'.
     Trying implicit prerequisite 'RCS/ob-sed.el,v'.
     Not found 'RCS/ob-sed.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-sed.el'.
     Trying implicit prerequisite 'RCS/ob-sed.el'.
     Not found 'RCS/ob-sed.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-sed.el'.
     Trying implicit prerequisite 's.ob-sed.el'.
     Not found 's.ob-sed.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-sed.el'.
     Trying implicit prerequisite 'SCCS/s.ob-sed.el'.
     Not found 'SCCS/s.ob-sed.el'.
     Trying harder.
    No implicit rule found for 'ob-sed.el'.
   Finished prerequisites of target file 'ob-sed.el'.
   No need to remake target 'ob-sed.el'.
   Considering target file 'ob-shell.el'.
    Looking for an implicit rule for 'ob-shell.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-shell.el'.
     Trying implicit prerequisite 'ob-shell.el,v'.
     Not found 'ob-shell.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-shell.el'.
     Trying implicit prerequisite 'RCS/ob-shell.el,v'.
     Not found 'RCS/ob-shell.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-shell.el'.
     Trying implicit prerequisite 'RCS/ob-shell.el'.
     Not found 'RCS/ob-shell.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-shell.el'.
     Trying implicit prerequisite 's.ob-shell.el'.
     Not found 's.ob-shell.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-shell.el'.
     Trying implicit prerequisite 'SCCS/s.ob-shell.el'.
     Not found 'SCCS/s.ob-shell.el'.
     Trying harder.
    No implicit rule found for 'ob-shell.el'.
   Finished prerequisites of target file 'ob-shell.el'.
   No need to remake target 'ob-shell.el'.
   Considering target file 'ob-sql.el'.
    Looking for an implicit rule for 'ob-sql.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-sql.el'.
     Trying implicit prerequisite 'ob-sql.el,v'.
     Not found 'ob-sql.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-sql.el'.
     Trying implicit prerequisite 'RCS/ob-sql.el,v'.
     Not found 'RCS/ob-sql.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-sql.el'.
     Trying implicit prerequisite 'RCS/ob-sql.el'.
     Not found 'RCS/ob-sql.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-sql.el'.
     Trying implicit prerequisite 's.ob-sql.el'.
     Not found 's.ob-sql.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-sql.el'.
     Trying implicit prerequisite 'SCCS/s.ob-sql.el'.
     Not found 'SCCS/s.ob-sql.el'.
     Trying harder.
    No implicit rule found for 'ob-sql.el'.
   Finished prerequisites of target file 'ob-sql.el'.
   No need to remake target 'ob-sql.el'.
   Considering target file 'ob-sqlite.el'.
    Looking for an implicit rule for 'ob-sqlite.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-sqlite.el'.
     Trying implicit prerequisite 'ob-sqlite.el,v'.
     Not found 'ob-sqlite.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-sqlite.el'.
     Trying implicit prerequisite 'RCS/ob-sqlite.el,v'.
     Not found 'RCS/ob-sqlite.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-sqlite.el'.
     Trying implicit prerequisite 'RCS/ob-sqlite.el'.
     Not found 'RCS/ob-sqlite.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-sqlite.el'.
     Trying implicit prerequisite 's.ob-sqlite.el'.
     Not found 's.ob-sqlite.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-sqlite.el'.
     Trying implicit prerequisite 'SCCS/s.ob-sqlite.el'.
     Not found 'SCCS/s.ob-sqlite.el'.
     Trying harder.
    No implicit rule found for 'ob-sqlite.el'.
   Finished prerequisites of target file 'ob-sqlite.el'.
   No need to remake target 'ob-sqlite.el'.
   Considering target file 'ob-table.el'.
    Looking for an implicit rule for 'ob-table.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-table.el'.
     Trying implicit prerequisite 'ob-table.el,v'.
     Not found 'ob-table.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-table.el'.
     Trying implicit prerequisite 'RCS/ob-table.el,v'.
     Not found 'RCS/ob-table.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-table.el'.
     Trying implicit prerequisite 'RCS/ob-table.el'.
     Not found 'RCS/ob-table.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-table.el'.
     Trying implicit prerequisite 's.ob-table.el'.
     Not found 's.ob-table.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-table.el'.
     Trying implicit prerequisite 'SCCS/s.ob-table.el'.
     Not found 'SCCS/s.ob-table.el'.
     Trying harder.
    No implicit rule found for 'ob-table.el'.
   Finished prerequisites of target file 'ob-table.el'.
   No need to remake target 'ob-table.el'.
   Considering target file 'ob-tangle.el'.
    Looking for an implicit rule for 'ob-tangle.el'.
     Trying pattern rule '%:: %,v' with stem 'ob-tangle.el'.
     Trying implicit prerequisite 'ob-tangle.el,v'.
     Not found 'ob-tangle.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob-tangle.el'.
     Trying implicit prerequisite 'RCS/ob-tangle.el,v'.
     Not found 'RCS/ob-tangle.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob-tangle.el'.
     Trying implicit prerequisite 'RCS/ob-tangle.el'.
     Not found 'RCS/ob-tangle.el'.
     Trying pattern rule '%:: s.%' with stem 'ob-tangle.el'.
     Trying implicit prerequisite 's.ob-tangle.el'.
     Not found 's.ob-tangle.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob-tangle.el'.
     Trying implicit prerequisite 'SCCS/s.ob-tangle.el'.
     Not found 'SCCS/s.ob-tangle.el'.
     Trying harder.
    No implicit rule found for 'ob-tangle.el'.
   Finished prerequisites of target file 'ob-tangle.el'.
   No need to remake target 'ob-tangle.el'.
   Considering target file 'ob.el'.
    Looking for an implicit rule for 'ob.el'.
     Trying pattern rule '%:: %,v' with stem 'ob.el'.
     Trying implicit prerequisite 'ob.el,v'.
     Not found 'ob.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ob.el'.
     Trying implicit prerequisite 'RCS/ob.el,v'.
     Not found 'RCS/ob.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ob.el'.
     Trying implicit prerequisite 'RCS/ob.el'.
     Not found 'RCS/ob.el'.
     Trying pattern rule '%:: s.%' with stem 'ob.el'.
     Trying implicit prerequisite 's.ob.el'.
     Not found 's.ob.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ob.el'.
     Trying implicit prerequisite 'SCCS/s.ob.el'.
     Not found 'SCCS/s.ob.el'.
     Trying harder.
    No implicit rule found for 'ob.el'.
   Finished prerequisites of target file 'ob.el'.
   No need to remake target 'ob.el'.
   Considering target file 'oc-basic.el'.
    Looking for an implicit rule for 'oc-basic.el'.
     Trying pattern rule '%:: %,v' with stem 'oc-basic.el'.
     Trying implicit prerequisite 'oc-basic.el,v'.
     Not found 'oc-basic.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'oc-basic.el'.
     Trying implicit prerequisite 'RCS/oc-basic.el,v'.
     Not found 'RCS/oc-basic.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'oc-basic.el'.
     Trying implicit prerequisite 'RCS/oc-basic.el'.
     Not found 'RCS/oc-basic.el'.
     Trying pattern rule '%:: s.%' with stem 'oc-basic.el'.
     Trying implicit prerequisite 's.oc-basic.el'.
     Not found 's.oc-basic.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'oc-basic.el'.
     Trying implicit prerequisite 'SCCS/s.oc-basic.el'.
     Not found 'SCCS/s.oc-basic.el'.
     Trying harder.
    No implicit rule found for 'oc-basic.el'.
   Finished prerequisites of target file 'oc-basic.el'.
   No need to remake target 'oc-basic.el'.
   Considering target file 'oc-biblatex.el'.
    Looking for an implicit rule for 'oc-biblatex.el'.
     Trying pattern rule '%:: %,v' with stem 'oc-biblatex.el'.
     Trying implicit prerequisite 'oc-biblatex.el,v'.
     Not found 'oc-biblatex.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'oc-biblatex.el'.
     Trying implicit prerequisite 'RCS/oc-biblatex.el,v'.
     Not found 'RCS/oc-biblatex.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'oc-biblatex.el'.
     Trying implicit prerequisite 'RCS/oc-biblatex.el'.
     Not found 'RCS/oc-biblatex.el'.
     Trying pattern rule '%:: s.%' with stem 'oc-biblatex.el'.
     Trying implicit prerequisite 's.oc-biblatex.el'.
     Not found 's.oc-biblatex.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'oc-biblatex.el'.
     Trying implicit prerequisite 'SCCS/s.oc-biblatex.el'.
     Not found 'SCCS/s.oc-biblatex.el'.
     Trying harder.
    No implicit rule found for 'oc-biblatex.el'.
   Finished prerequisites of target file 'oc-biblatex.el'.
   No need to remake target 'oc-biblatex.el'.
   Considering target file 'oc-bibtex.el'.
    Looking for an implicit rule for 'oc-bibtex.el'.
     Trying pattern rule '%:: %,v' with stem 'oc-bibtex.el'.
     Trying implicit prerequisite 'oc-bibtex.el,v'.
     Not found 'oc-bibtex.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'oc-bibtex.el'.
     Trying implicit prerequisite 'RCS/oc-bibtex.el,v'.
     Not found 'RCS/oc-bibtex.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'oc-bibtex.el'.
     Trying implicit prerequisite 'RCS/oc-bibtex.el'.
     Not found 'RCS/oc-bibtex.el'.
     Trying pattern rule '%:: s.%' with stem 'oc-bibtex.el'.
     Trying implicit prerequisite 's.oc-bibtex.el'.
     Not found 's.oc-bibtex.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'oc-bibtex.el'.
     Trying implicit prerequisite 'SCCS/s.oc-bibtex.el'.
     Not found 'SCCS/s.oc-bibtex.el'.
     Trying harder.
    No implicit rule found for 'oc-bibtex.el'.
   Finished prerequisites of target file 'oc-bibtex.el'.
   No need to remake target 'oc-bibtex.el'.
   Considering target file 'oc-csl.el'.
    Looking for an implicit rule for 'oc-csl.el'.
     Trying pattern rule '%:: %,v' with stem 'oc-csl.el'.
     Trying implicit prerequisite 'oc-csl.el,v'.
     Not found 'oc-csl.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'oc-csl.el'.
     Trying implicit prerequisite 'RCS/oc-csl.el,v'.
     Not found 'RCS/oc-csl.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'oc-csl.el'.
     Trying implicit prerequisite 'RCS/oc-csl.el'.
     Not found 'RCS/oc-csl.el'.
     Trying pattern rule '%:: s.%' with stem 'oc-csl.el'.
     Trying implicit prerequisite 's.oc-csl.el'.
     Not found 's.oc-csl.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'oc-csl.el'.
     Trying implicit prerequisite 'SCCS/s.oc-csl.el'.
     Not found 'SCCS/s.oc-csl.el'.
     Trying harder.
    No implicit rule found for 'oc-csl.el'.
   Finished prerequisites of target file 'oc-csl.el'.
   No need to remake target 'oc-csl.el'.
   Considering target file 'oc-natbib.el'.
    Looking for an implicit rule for 'oc-natbib.el'.
     Trying pattern rule '%:: %,v' with stem 'oc-natbib.el'.
     Trying implicit prerequisite 'oc-natbib.el,v'.
     Not found 'oc-natbib.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'oc-natbib.el'.
     Trying implicit prerequisite 'RCS/oc-natbib.el,v'.
     Not found 'RCS/oc-natbib.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'oc-natbib.el'.
     Trying implicit prerequisite 'RCS/oc-natbib.el'.
     Not found 'RCS/oc-natbib.el'.
     Trying pattern rule '%:: s.%' with stem 'oc-natbib.el'.
     Trying implicit prerequisite 's.oc-natbib.el'.
     Not found 's.oc-natbib.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'oc-natbib.el'.
     Trying implicit prerequisite 'SCCS/s.oc-natbib.el'.
     Not found 'SCCS/s.oc-natbib.el'.
     Trying harder.
    No implicit rule found for 'oc-natbib.el'.
   Finished prerequisites of target file 'oc-natbib.el'.
   No need to remake target 'oc-natbib.el'.
   Considering target file 'oc.el'.
    Looking for an implicit rule for 'oc.el'.
     Trying pattern rule '%:: %,v' with stem 'oc.el'.
     Trying implicit prerequisite 'oc.el,v'.
     Not found 'oc.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'oc.el'.
     Trying implicit prerequisite 'RCS/oc.el,v'.
     Not found 'RCS/oc.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'oc.el'.
     Trying implicit prerequisite 'RCS/oc.el'.
     Not found 'RCS/oc.el'.
     Trying pattern rule '%:: s.%' with stem 'oc.el'.
     Trying implicit prerequisite 's.oc.el'.
     Not found 's.oc.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'oc.el'.
     Trying implicit prerequisite 'SCCS/s.oc.el'.
     Not found 'SCCS/s.oc.el'.
     Trying harder.
    No implicit rule found for 'oc.el'.
   Finished prerequisites of target file 'oc.el'.
   No need to remake target 'oc.el'.
   Considering target file 'ol-bbdb.el'.
    Looking for an implicit rule for 'ol-bbdb.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-bbdb.el'.
     Trying implicit prerequisite 'ol-bbdb.el,v'.
     Not found 'ol-bbdb.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-bbdb.el'.
     Trying implicit prerequisite 'RCS/ol-bbdb.el,v'.
     Not found 'RCS/ol-bbdb.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-bbdb.el'.
     Trying implicit prerequisite 'RCS/ol-bbdb.el'.
     Not found 'RCS/ol-bbdb.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-bbdb.el'.
     Trying implicit prerequisite 's.ol-bbdb.el'.
     Not found 's.ol-bbdb.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-bbdb.el'.
     Trying implicit prerequisite 'SCCS/s.ol-bbdb.el'.
     Not found 'SCCS/s.ol-bbdb.el'.
     Trying harder.
    No implicit rule found for 'ol-bbdb.el'.
   Finished prerequisites of target file 'ol-bbdb.el'.
   No need to remake target 'ol-bbdb.el'.
   Considering target file 'ol-bibtex.el'.
    Looking for an implicit rule for 'ol-bibtex.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-bibtex.el'.
     Trying implicit prerequisite 'ol-bibtex.el,v'.
     Not found 'ol-bibtex.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-bibtex.el'.
     Trying implicit prerequisite 'RCS/ol-bibtex.el,v'.
     Not found 'RCS/ol-bibtex.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-bibtex.el'.
     Trying implicit prerequisite 'RCS/ol-bibtex.el'.
     Not found 'RCS/ol-bibtex.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-bibtex.el'.
     Trying implicit prerequisite 's.ol-bibtex.el'.
     Not found 's.ol-bibtex.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-bibtex.el'.
     Trying implicit prerequisite 'SCCS/s.ol-bibtex.el'.
     Not found 'SCCS/s.ol-bibtex.el'.
     Trying harder.
    No implicit rule found for 'ol-bibtex.el'.
   Finished prerequisites of target file 'ol-bibtex.el'.
   No need to remake target 'ol-bibtex.el'.
   Considering target file 'ol-docview.el'.
    Looking for an implicit rule for 'ol-docview.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-docview.el'.
     Trying implicit prerequisite 'ol-docview.el,v'.
     Not found 'ol-docview.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-docview.el'.
     Trying implicit prerequisite 'RCS/ol-docview.el,v'.
     Not found 'RCS/ol-docview.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-docview.el'.
     Trying implicit prerequisite 'RCS/ol-docview.el'.
     Not found 'RCS/ol-docview.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-docview.el'.
     Trying implicit prerequisite 's.ol-docview.el'.
     Not found 's.ol-docview.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-docview.el'.
     Trying implicit prerequisite 'SCCS/s.ol-docview.el'.
     Not found 'SCCS/s.ol-docview.el'.
     Trying harder.
    No implicit rule found for 'ol-docview.el'.
   Finished prerequisites of target file 'ol-docview.el'.
   No need to remake target 'ol-docview.el'.
   Considering target file 'ol-doi.el'.
    Looking for an implicit rule for 'ol-doi.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-doi.el'.
     Trying implicit prerequisite 'ol-doi.el,v'.
     Not found 'ol-doi.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-doi.el'.
     Trying implicit prerequisite 'RCS/ol-doi.el,v'.
     Not found 'RCS/ol-doi.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-doi.el'.
     Trying implicit prerequisite 'RCS/ol-doi.el'.
     Not found 'RCS/ol-doi.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-doi.el'.
     Trying implicit prerequisite 's.ol-doi.el'.
     Not found 's.ol-doi.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-doi.el'.
     Trying implicit prerequisite 'SCCS/s.ol-doi.el'.
     Not found 'SCCS/s.ol-doi.el'.
     Trying harder.
    No implicit rule found for 'ol-doi.el'.
   Finished prerequisites of target file 'ol-doi.el'.
   No need to remake target 'ol-doi.el'.
   Considering target file 'ol-eshell.el'.
    Looking for an implicit rule for 'ol-eshell.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-eshell.el'.
     Trying implicit prerequisite 'ol-eshell.el,v'.
     Not found 'ol-eshell.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-eshell.el'.
     Trying implicit prerequisite 'RCS/ol-eshell.el,v'.
     Not found 'RCS/ol-eshell.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-eshell.el'.
     Trying implicit prerequisite 'RCS/ol-eshell.el'.
     Not found 'RCS/ol-eshell.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-eshell.el'.
     Trying implicit prerequisite 's.ol-eshell.el'.
     Not found 's.ol-eshell.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-eshell.el'.
     Trying implicit prerequisite 'SCCS/s.ol-eshell.el'.
     Not found 'SCCS/s.ol-eshell.el'.
     Trying harder.
    No implicit rule found for 'ol-eshell.el'.
   Finished prerequisites of target file 'ol-eshell.el'.
   No need to remake target 'ol-eshell.el'.
   Considering target file 'ol-eww.el'.
    Looking for an implicit rule for 'ol-eww.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-eww.el'.
     Trying implicit prerequisite 'ol-eww.el,v'.
     Not found 'ol-eww.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-eww.el'.
     Trying implicit prerequisite 'RCS/ol-eww.el,v'.
     Not found 'RCS/ol-eww.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-eww.el'.
     Trying implicit prerequisite 'RCS/ol-eww.el'.
     Not found 'RCS/ol-eww.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-eww.el'.
     Trying implicit prerequisite 's.ol-eww.el'.
     Not found 's.ol-eww.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-eww.el'.
     Trying implicit prerequisite 'SCCS/s.ol-eww.el'.
     Not found 'SCCS/s.ol-eww.el'.
     Trying harder.
    No implicit rule found for 'ol-eww.el'.
   Finished prerequisites of target file 'ol-eww.el'.
   No need to remake target 'ol-eww.el'.
   Considering target file 'ol-gnus.el'.
    Looking for an implicit rule for 'ol-gnus.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-gnus.el'.
     Trying implicit prerequisite 'ol-gnus.el,v'.
     Not found 'ol-gnus.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-gnus.el'.
     Trying implicit prerequisite 'RCS/ol-gnus.el,v'.
     Not found 'RCS/ol-gnus.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-gnus.el'.
     Trying implicit prerequisite 'RCS/ol-gnus.el'.
     Not found 'RCS/ol-gnus.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-gnus.el'.
     Trying implicit prerequisite 's.ol-gnus.el'.
     Not found 's.ol-gnus.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-gnus.el'.
     Trying implicit prerequisite 'SCCS/s.ol-gnus.el'.
     Not found 'SCCS/s.ol-gnus.el'.
     Trying harder.
    No implicit rule found for 'ol-gnus.el'.
   Finished prerequisites of target file 'ol-gnus.el'.
   No need to remake target 'ol-gnus.el'.
   Considering target file 'ol-info.el'.
    Looking for an implicit rule for 'ol-info.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-info.el'.
     Trying implicit prerequisite 'ol-info.el,v'.
     Not found 'ol-info.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-info.el'.
     Trying implicit prerequisite 'RCS/ol-info.el,v'.
     Not found 'RCS/ol-info.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-info.el'.
     Trying implicit prerequisite 'RCS/ol-info.el'.
     Not found 'RCS/ol-info.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-info.el'.
     Trying implicit prerequisite 's.ol-info.el'.
     Not found 's.ol-info.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-info.el'.
     Trying implicit prerequisite 'SCCS/s.ol-info.el'.
     Not found 'SCCS/s.ol-info.el'.
     Trying harder.
    No implicit rule found for 'ol-info.el'.
   Finished prerequisites of target file 'ol-info.el'.
   No need to remake target 'ol-info.el'.
   Considering target file 'ol-irc.el'.
    Looking for an implicit rule for 'ol-irc.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-irc.el'.
     Trying implicit prerequisite 'ol-irc.el,v'.
     Not found 'ol-irc.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-irc.el'.
     Trying implicit prerequisite 'RCS/ol-irc.el,v'.
     Not found 'RCS/ol-irc.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-irc.el'.
     Trying implicit prerequisite 'RCS/ol-irc.el'.
     Not found 'RCS/ol-irc.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-irc.el'.
     Trying implicit prerequisite 's.ol-irc.el'.
     Not found 's.ol-irc.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-irc.el'.
     Trying implicit prerequisite 'SCCS/s.ol-irc.el'.
     Not found 'SCCS/s.ol-irc.el'.
     Trying harder.
    No implicit rule found for 'ol-irc.el'.
   Finished prerequisites of target file 'ol-irc.el'.
   No need to remake target 'ol-irc.el'.
   Considering target file 'ol-man.el'.
    Looking for an implicit rule for 'ol-man.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-man.el'.
     Trying implicit prerequisite 'ol-man.el,v'.
     Not found 'ol-man.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-man.el'.
     Trying implicit prerequisite 'RCS/ol-man.el,v'.
     Not found 'RCS/ol-man.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-man.el'.
     Trying implicit prerequisite 'RCS/ol-man.el'.
     Not found 'RCS/ol-man.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-man.el'.
     Trying implicit prerequisite 's.ol-man.el'.
     Not found 's.ol-man.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-man.el'.
     Trying implicit prerequisite 'SCCS/s.ol-man.el'.
     Not found 'SCCS/s.ol-man.el'.
     Trying harder.
    No implicit rule found for 'ol-man.el'.
   Finished prerequisites of target file 'ol-man.el'.
   No need to remake target 'ol-man.el'.
   Considering target file 'ol-mhe.el'.
    Looking for an implicit rule for 'ol-mhe.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-mhe.el'.
     Trying implicit prerequisite 'ol-mhe.el,v'.
     Not found 'ol-mhe.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-mhe.el'.
     Trying implicit prerequisite 'RCS/ol-mhe.el,v'.
     Not found 'RCS/ol-mhe.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-mhe.el'.
     Trying implicit prerequisite 'RCS/ol-mhe.el'.
     Not found 'RCS/ol-mhe.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-mhe.el'.
     Trying implicit prerequisite 's.ol-mhe.el'.
     Not found 's.ol-mhe.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-mhe.el'.
     Trying implicit prerequisite 'SCCS/s.ol-mhe.el'.
     Not found 'SCCS/s.ol-mhe.el'.
     Trying harder.
    No implicit rule found for 'ol-mhe.el'.
   Finished prerequisites of target file 'ol-mhe.el'.
   No need to remake target 'ol-mhe.el'.
   Considering target file 'ol-rmail.el'.
    Looking for an implicit rule for 'ol-rmail.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-rmail.el'.
     Trying implicit prerequisite 'ol-rmail.el,v'.
     Not found 'ol-rmail.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-rmail.el'.
     Trying implicit prerequisite 'RCS/ol-rmail.el,v'.
     Not found 'RCS/ol-rmail.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-rmail.el'.
     Trying implicit prerequisite 'RCS/ol-rmail.el'.
     Not found 'RCS/ol-rmail.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-rmail.el'.
     Trying implicit prerequisite 's.ol-rmail.el'.
     Not found 's.ol-rmail.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-rmail.el'.
     Trying implicit prerequisite 'SCCS/s.ol-rmail.el'.
     Not found 'SCCS/s.ol-rmail.el'.
     Trying harder.
    No implicit rule found for 'ol-rmail.el'.
   Finished prerequisites of target file 'ol-rmail.el'.
   No need to remake target 'ol-rmail.el'.
   Considering target file 'ol-w3m.el'.
    Looking for an implicit rule for 'ol-w3m.el'.
     Trying pattern rule '%:: %,v' with stem 'ol-w3m.el'.
     Trying implicit prerequisite 'ol-w3m.el,v'.
     Not found 'ol-w3m.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol-w3m.el'.
     Trying implicit prerequisite 'RCS/ol-w3m.el,v'.
     Not found 'RCS/ol-w3m.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol-w3m.el'.
     Trying implicit prerequisite 'RCS/ol-w3m.el'.
     Not found 'RCS/ol-w3m.el'.
     Trying pattern rule '%:: s.%' with stem 'ol-w3m.el'.
     Trying implicit prerequisite 's.ol-w3m.el'.
     Not found 's.ol-w3m.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol-w3m.el'.
     Trying implicit prerequisite 'SCCS/s.ol-w3m.el'.
     Not found 'SCCS/s.ol-w3m.el'.
     Trying harder.
    No implicit rule found for 'ol-w3m.el'.
   Finished prerequisites of target file 'ol-w3m.el'.
   No need to remake target 'ol-w3m.el'.
   Considering target file 'ol.el'.
    Looking for an implicit rule for 'ol.el'.
     Trying pattern rule '%:: %,v' with stem 'ol.el'.
     Trying implicit prerequisite 'ol.el,v'.
     Not found 'ol.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ol.el'.
     Trying implicit prerequisite 'RCS/ol.el,v'.
     Not found 'RCS/ol.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ol.el'.
     Trying implicit prerequisite 'RCS/ol.el'.
     Not found 'RCS/ol.el'.
     Trying pattern rule '%:: s.%' with stem 'ol.el'.
     Trying implicit prerequisite 's.ol.el'.
     Not found 's.ol.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ol.el'.
     Trying implicit prerequisite 'SCCS/s.ol.el'.
     Not found 'SCCS/s.ol.el'.
     Trying harder.
    No implicit rule found for 'ol.el'.
   Finished prerequisites of target file 'ol.el'.
   No need to remake target 'ol.el'.
   Considering target file 'org-agenda.el'.
    Looking for an implicit rule for 'org-agenda.el'.
     Trying pattern rule '%:: %,v' with stem 'org-agenda.el'.
     Trying implicit prerequisite 'org-agenda.el,v'.
     Not found 'org-agenda.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-agenda.el'.
     Trying implicit prerequisite 'RCS/org-agenda.el,v'.
     Not found 'RCS/org-agenda.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-agenda.el'.
     Trying implicit prerequisite 'RCS/org-agenda.el'.
     Not found 'RCS/org-agenda.el'.
     Trying pattern rule '%:: s.%' with stem 'org-agenda.el'.
     Trying implicit prerequisite 's.org-agenda.el'.
     Not found 's.org-agenda.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-agenda.el'.
     Trying implicit prerequisite 'SCCS/s.org-agenda.el'.
     Not found 'SCCS/s.org-agenda.el'.
     Trying harder.
    No implicit rule found for 'org-agenda.el'.
   Finished prerequisites of target file 'org-agenda.el'.
   No need to remake target 'org-agenda.el'.
   Considering target file 'org-archive.el'.
    Looking for an implicit rule for 'org-archive.el'.
     Trying pattern rule '%:: %,v' with stem 'org-archive.el'.
     Trying implicit prerequisite 'org-archive.el,v'.
     Not found 'org-archive.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-archive.el'.
     Trying implicit prerequisite 'RCS/org-archive.el,v'.
     Not found 'RCS/org-archive.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-archive.el'.
     Trying implicit prerequisite 'RCS/org-archive.el'.
     Not found 'RCS/org-archive.el'.
     Trying pattern rule '%:: s.%' with stem 'org-archive.el'.
     Trying implicit prerequisite 's.org-archive.el'.
     Not found 's.org-archive.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-archive.el'.
     Trying implicit prerequisite 'SCCS/s.org-archive.el'.
     Not found 'SCCS/s.org-archive.el'.
     Trying harder.
    No implicit rule found for 'org-archive.el'.
   Finished prerequisites of target file 'org-archive.el'.
   No need to remake target 'org-archive.el'.
   Considering target file 'org-attach-git.el'.
    Looking for an implicit rule for 'org-attach-git.el'.
     Trying pattern rule '%:: %,v' with stem 'org-attach-git.el'.
     Trying implicit prerequisite 'org-attach-git.el,v'.
     Not found 'org-attach-git.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-attach-git.el'.
     Trying implicit prerequisite 'RCS/org-attach-git.el,v'.
     Not found 'RCS/org-attach-git.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-attach-git.el'.
     Trying implicit prerequisite 'RCS/org-attach-git.el'.
     Not found 'RCS/org-attach-git.el'.
     Trying pattern rule '%:: s.%' with stem 'org-attach-git.el'.
     Trying implicit prerequisite 's.org-attach-git.el'.
     Not found 's.org-attach-git.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-attach-git.el'.
     Trying implicit prerequisite 'SCCS/s.org-attach-git.el'.
     Not found 'SCCS/s.org-attach-git.el'.
     Trying harder.
    No implicit rule found for 'org-attach-git.el'.
   Finished prerequisites of target file 'org-attach-git.el'.
   No need to remake target 'org-attach-git.el'.
   Considering target file 'org-attach.el'.
    Looking for an implicit rule for 'org-attach.el'.
     Trying pattern rule '%:: %,v' with stem 'org-attach.el'.
     Trying implicit prerequisite 'org-attach.el,v'.
     Not found 'org-attach.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-attach.el'.
     Trying implicit prerequisite 'RCS/org-attach.el,v'.
     Not found 'RCS/org-attach.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-attach.el'.
     Trying implicit prerequisite 'RCS/org-attach.el'.
     Not found 'RCS/org-attach.el'.
     Trying pattern rule '%:: s.%' with stem 'org-attach.el'.
     Trying implicit prerequisite 's.org-attach.el'.
     Not found 's.org-attach.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-attach.el'.
     Trying implicit prerequisite 'SCCS/s.org-attach.el'.
     Not found 'SCCS/s.org-attach.el'.
     Trying harder.
    No implicit rule found for 'org-attach.el'.
   Finished prerequisites of target file 'org-attach.el'.
   No need to remake target 'org-attach.el'.
   Considering target file 'org-capture.el'.
    Looking for an implicit rule for 'org-capture.el'.
     Trying pattern rule '%:: %,v' with stem 'org-capture.el'.
     Trying implicit prerequisite 'org-capture.el,v'.
     Not found 'org-capture.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-capture.el'.
     Trying implicit prerequisite 'RCS/org-capture.el,v'.
     Not found 'RCS/org-capture.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-capture.el'.
     Trying implicit prerequisite 'RCS/org-capture.el'.
     Not found 'RCS/org-capture.el'.
     Trying pattern rule '%:: s.%' with stem 'org-capture.el'.
     Trying implicit prerequisite 's.org-capture.el'.
     Not found 's.org-capture.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-capture.el'.
     Trying implicit prerequisite 'SCCS/s.org-capture.el'.
     Not found 'SCCS/s.org-capture.el'.
     Trying harder.
    No implicit rule found for 'org-capture.el'.
   Finished prerequisites of target file 'org-capture.el'.
   No need to remake target 'org-capture.el'.
   Considering target file 'org-clock.el'.
    Looking for an implicit rule for 'org-clock.el'.
     Trying pattern rule '%:: %,v' with stem 'org-clock.el'.
     Trying implicit prerequisite 'org-clock.el,v'.
     Not found 'org-clock.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-clock.el'.
     Trying implicit prerequisite 'RCS/org-clock.el,v'.
     Not found 'RCS/org-clock.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-clock.el'.
     Trying implicit prerequisite 'RCS/org-clock.el'.
     Not found 'RCS/org-clock.el'.
     Trying pattern rule '%:: s.%' with stem 'org-clock.el'.
     Trying implicit prerequisite 's.org-clock.el'.
     Not found 's.org-clock.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-clock.el'.
     Trying implicit prerequisite 'SCCS/s.org-clock.el'.
     Not found 'SCCS/s.org-clock.el'.
     Trying harder.
    No implicit rule found for 'org-clock.el'.
   Finished prerequisites of target file 'org-clock.el'.
   No need to remake target 'org-clock.el'.
   Considering target file 'org-colview.el'.
    Looking for an implicit rule for 'org-colview.el'.
     Trying pattern rule '%:: %,v' with stem 'org-colview.el'.
     Trying implicit prerequisite 'org-colview.el,v'.
     Not found 'org-colview.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-colview.el'.
     Trying implicit prerequisite 'RCS/org-colview.el,v'.
     Not found 'RCS/org-colview.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-colview.el'.
     Trying implicit prerequisite 'RCS/org-colview.el'.
     Not found 'RCS/org-colview.el'.
     Trying pattern rule '%:: s.%' with stem 'org-colview.el'.
     Trying implicit prerequisite 's.org-colview.el'.
     Not found 's.org-colview.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-colview.el'.
     Trying implicit prerequisite 'SCCS/s.org-colview.el'.
     Not found 'SCCS/s.org-colview.el'.
     Trying harder.
    No implicit rule found for 'org-colview.el'.
   Finished prerequisites of target file 'org-colview.el'.
   No need to remake target 'org-colview.el'.
   Considering target file 'org-compat.el'.
    Looking for an implicit rule for 'org-compat.el'.
     Trying pattern rule '%:: %,v' with stem 'org-compat.el'.
     Trying implicit prerequisite 'org-compat.el,v'.
     Not found 'org-compat.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-compat.el'.
     Trying implicit prerequisite 'RCS/org-compat.el,v'.
     Not found 'RCS/org-compat.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-compat.el'.
     Trying implicit prerequisite 'RCS/org-compat.el'.
     Not found 'RCS/org-compat.el'.
     Trying pattern rule '%:: s.%' with stem 'org-compat.el'.
     Trying implicit prerequisite 's.org-compat.el'.
     Not found 's.org-compat.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-compat.el'.
     Trying implicit prerequisite 'SCCS/s.org-compat.el'.
     Not found 'SCCS/s.org-compat.el'.
     Trying harder.
    No implicit rule found for 'org-compat.el'.
   Finished prerequisites of target file 'org-compat.el'.
   No need to remake target 'org-compat.el'.
   Considering target file 'org-crypt.el'.
    Looking for an implicit rule for 'org-crypt.el'.
     Trying pattern rule '%:: %,v' with stem 'org-crypt.el'.
     Trying implicit prerequisite 'org-crypt.el,v'.
     Not found 'org-crypt.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-crypt.el'.
     Trying implicit prerequisite 'RCS/org-crypt.el,v'.
     Not found 'RCS/org-crypt.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-crypt.el'.
     Trying implicit prerequisite 'RCS/org-crypt.el'.
     Not found 'RCS/org-crypt.el'.
     Trying pattern rule '%:: s.%' with stem 'org-crypt.el'.
     Trying implicit prerequisite 's.org-crypt.el'.
     Not found 's.org-crypt.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-crypt.el'.
     Trying implicit prerequisite 'SCCS/s.org-crypt.el'.
     Not found 'SCCS/s.org-crypt.el'.
     Trying harder.
    No implicit rule found for 'org-crypt.el'.
   Finished prerequisites of target file 'org-crypt.el'.
   No need to remake target 'org-crypt.el'.
   Considering target file 'org-ctags.el'.
    Looking for an implicit rule for 'org-ctags.el'.
     Trying pattern rule '%:: %,v' with stem 'org-ctags.el'.
     Trying implicit prerequisite 'org-ctags.el,v'.
     Not found 'org-ctags.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-ctags.el'.
     Trying implicit prerequisite 'RCS/org-ctags.el,v'.
     Not found 'RCS/org-ctags.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-ctags.el'.
     Trying implicit prerequisite 'RCS/org-ctags.el'.
     Not found 'RCS/org-ctags.el'.
     Trying pattern rule '%:: s.%' with stem 'org-ctags.el'.
     Trying implicit prerequisite 's.org-ctags.el'.
     Not found 's.org-ctags.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-ctags.el'.
     Trying implicit prerequisite 'SCCS/s.org-ctags.el'.
     Not found 'SCCS/s.org-ctags.el'.
     Trying harder.
    No implicit rule found for 'org-ctags.el'.
   Finished prerequisites of target file 'org-ctags.el'.
   No need to remake target 'org-ctags.el'.
   Considering target file 'org-cycle.el'.
    Looking for an implicit rule for 'org-cycle.el'.
     Trying pattern rule '%:: %,v' with stem 'org-cycle.el'.
     Trying implicit prerequisite 'org-cycle.el,v'.
     Not found 'org-cycle.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-cycle.el'.
     Trying implicit prerequisite 'RCS/org-cycle.el,v'.
     Not found 'RCS/org-cycle.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-cycle.el'.
     Trying implicit prerequisite 'RCS/org-cycle.el'.
     Not found 'RCS/org-cycle.el'.
     Trying pattern rule '%:: s.%' with stem 'org-cycle.el'.
     Trying implicit prerequisite 's.org-cycle.el'.
     Not found 's.org-cycle.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-cycle.el'.
     Trying implicit prerequisite 'SCCS/s.org-cycle.el'.
     Not found 'SCCS/s.org-cycle.el'.
     Trying harder.
    No implicit rule found for 'org-cycle.el'.
   Finished prerequisites of target file 'org-cycle.el'.
   No need to remake target 'org-cycle.el'.
   Considering target file 'org-datetree.el'.
    Looking for an implicit rule for 'org-datetree.el'.
     Trying pattern rule '%:: %,v' with stem 'org-datetree.el'.
     Trying implicit prerequisite 'org-datetree.el,v'.
     Not found 'org-datetree.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-datetree.el'.
     Trying implicit prerequisite 'RCS/org-datetree.el,v'.
     Not found 'RCS/org-datetree.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-datetree.el'.
     Trying implicit prerequisite 'RCS/org-datetree.el'.
     Not found 'RCS/org-datetree.el'.
     Trying pattern rule '%:: s.%' with stem 'org-datetree.el'.
     Trying implicit prerequisite 's.org-datetree.el'.
     Not found 's.org-datetree.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-datetree.el'.
     Trying implicit prerequisite 'SCCS/s.org-datetree.el'.
     Not found 'SCCS/s.org-datetree.el'.
     Trying harder.
    No implicit rule found for 'org-datetree.el'.
   Finished prerequisites of target file 'org-datetree.el'.
   No need to remake target 'org-datetree.el'.
   Considering target file 'org-duration.el'.
    Looking for an implicit rule for 'org-duration.el'.
     Trying pattern rule '%:: %,v' with stem 'org-duration.el'.
     Trying implicit prerequisite 'org-duration.el,v'.
     Not found 'org-duration.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-duration.el'.
     Trying implicit prerequisite 'RCS/org-duration.el,v'.
     Not found 'RCS/org-duration.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-duration.el'.
     Trying implicit prerequisite 'RCS/org-duration.el'.
     Not found 'RCS/org-duration.el'.
     Trying pattern rule '%:: s.%' with stem 'org-duration.el'.
     Trying implicit prerequisite 's.org-duration.el'.
     Not found 's.org-duration.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-duration.el'.
     Trying implicit prerequisite 'SCCS/s.org-duration.el'.
     Not found 'SCCS/s.org-duration.el'.
     Trying harder.
    No implicit rule found for 'org-duration.el'.
   Finished prerequisites of target file 'org-duration.el'.
   No need to remake target 'org-duration.el'.
   Considering target file 'org-element-ast.el'.
    Looking for an implicit rule for 'org-element-ast.el'.
     Trying pattern rule '%:: %,v' with stem 'org-element-ast.el'.
     Trying implicit prerequisite 'org-element-ast.el,v'.
     Not found 'org-element-ast.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-element-ast.el'.
     Trying implicit prerequisite 'RCS/org-element-ast.el,v'.
     Not found 'RCS/org-element-ast.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-element-ast.el'.
     Trying implicit prerequisite 'RCS/org-element-ast.el'.
     Not found 'RCS/org-element-ast.el'.
     Trying pattern rule '%:: s.%' with stem 'org-element-ast.el'.
     Trying implicit prerequisite 's.org-element-ast.el'.
     Not found 's.org-element-ast.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-element-ast.el'.
     Trying implicit prerequisite 'SCCS/s.org-element-ast.el'.
     Not found 'SCCS/s.org-element-ast.el'.
     Trying harder.
    No implicit rule found for 'org-element-ast.el'.
   Finished prerequisites of target file 'org-element-ast.el'.
   No need to remake target 'org-element-ast.el'.
   Considering target file 'org-element.el'.
    Looking for an implicit rule for 'org-element.el'.
     Trying pattern rule '%:: %,v' with stem 'org-element.el'.
     Trying implicit prerequisite 'org-element.el,v'.
     Not found 'org-element.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-element.el'.
     Trying implicit prerequisite 'RCS/org-element.el,v'.
     Not found 'RCS/org-element.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-element.el'.
     Trying implicit prerequisite 'RCS/org-element.el'.
     Not found 'RCS/org-element.el'.
     Trying pattern rule '%:: s.%' with stem 'org-element.el'.
     Trying implicit prerequisite 's.org-element.el'.
     Not found 's.org-element.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-element.el'.
     Trying implicit prerequisite 'SCCS/s.org-element.el'.
     Not found 'SCCS/s.org-element.el'.
     Trying harder.
    No implicit rule found for 'org-element.el'.
   Finished prerequisites of target file 'org-element.el'.
   No need to remake target 'org-element.el'.
   Considering target file 'org-entities.el'.
    Looking for an implicit rule for 'org-entities.el'.
     Trying pattern rule '%:: %,v' with stem 'org-entities.el'.
     Trying implicit prerequisite 'org-entities.el,v'.
     Not found 'org-entities.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-entities.el'.
     Trying implicit prerequisite 'RCS/org-entities.el,v'.
     Not found 'RCS/org-entities.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-entities.el'.
     Trying implicit prerequisite 'RCS/org-entities.el'.
     Not found 'RCS/org-entities.el'.
     Trying pattern rule '%:: s.%' with stem 'org-entities.el'.
     Trying implicit prerequisite 's.org-entities.el'.
     Not found 's.org-entities.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-entities.el'.
     Trying implicit prerequisite 'SCCS/s.org-entities.el'.
     Not found 'SCCS/s.org-entities.el'.
     Trying harder.
    No implicit rule found for 'org-entities.el'.
   Finished prerequisites of target file 'org-entities.el'.
   No need to remake target 'org-entities.el'.
   Considering target file 'org-faces.el'.
    Looking for an implicit rule for 'org-faces.el'.
     Trying pattern rule '%:: %,v' with stem 'org-faces.el'.
     Trying implicit prerequisite 'org-faces.el,v'.
     Not found 'org-faces.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-faces.el'.
     Trying implicit prerequisite 'RCS/org-faces.el,v'.
     Not found 'RCS/org-faces.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-faces.el'.
     Trying implicit prerequisite 'RCS/org-faces.el'.
     Not found 'RCS/org-faces.el'.
     Trying pattern rule '%:: s.%' with stem 'org-faces.el'.
     Trying implicit prerequisite 's.org-faces.el'.
     Not found 's.org-faces.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-faces.el'.
     Trying implicit prerequisite 'SCCS/s.org-faces.el'.
     Not found 'SCCS/s.org-faces.el'.
     Trying harder.
    No implicit rule found for 'org-faces.el'.
   Finished prerequisites of target file 'org-faces.el'.
   No need to remake target 'org-faces.el'.
   Considering target file 'org-feed.el'.
    Looking for an implicit rule for 'org-feed.el'.
     Trying pattern rule '%:: %,v' with stem 'org-feed.el'.
     Trying implicit prerequisite 'org-feed.el,v'.
     Not found 'org-feed.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-feed.el'.
     Trying implicit prerequisite 'RCS/org-feed.el,v'.
     Not found 'RCS/org-feed.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-feed.el'.
     Trying implicit prerequisite 'RCS/org-feed.el'.
     Not found 'RCS/org-feed.el'.
     Trying pattern rule '%:: s.%' with stem 'org-feed.el'.
     Trying implicit prerequisite 's.org-feed.el'.
     Not found 's.org-feed.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-feed.el'.
     Trying implicit prerequisite 'SCCS/s.org-feed.el'.
     Not found 'SCCS/s.org-feed.el'.
     Trying harder.
    No implicit rule found for 'org-feed.el'.
   Finished prerequisites of target file 'org-feed.el'.
   No need to remake target 'org-feed.el'.
   Considering target file 'org-fold-core.el'.
    Looking for an implicit rule for 'org-fold-core.el'.
     Trying pattern rule '%:: %,v' with stem 'org-fold-core.el'.
     Trying implicit prerequisite 'org-fold-core.el,v'.
     Not found 'org-fold-core.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-fold-core.el'.
     Trying implicit prerequisite 'RCS/org-fold-core.el,v'.
     Not found 'RCS/org-fold-core.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-fold-core.el'.
     Trying implicit prerequisite 'RCS/org-fold-core.el'.
     Not found 'RCS/org-fold-core.el'.
     Trying pattern rule '%:: s.%' with stem 'org-fold-core.el'.
     Trying implicit prerequisite 's.org-fold-core.el'.
     Not found 's.org-fold-core.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-fold-core.el'.
     Trying implicit prerequisite 'SCCS/s.org-fold-core.el'.
     Not found 'SCCS/s.org-fold-core.el'.
     Trying harder.
    No implicit rule found for 'org-fold-core.el'.
   Finished prerequisites of target file 'org-fold-core.el'.
   No need to remake target 'org-fold-core.el'.
   Considering target file 'org-fold.el'.
    Looking for an implicit rule for 'org-fold.el'.
     Trying pattern rule '%:: %,v' with stem 'org-fold.el'.
     Trying implicit prerequisite 'org-fold.el,v'.
     Not found 'org-fold.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-fold.el'.
     Trying implicit prerequisite 'RCS/org-fold.el,v'.
     Not found 'RCS/org-fold.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-fold.el'.
     Trying implicit prerequisite 'RCS/org-fold.el'.
     Not found 'RCS/org-fold.el'.
     Trying pattern rule '%:: s.%' with stem 'org-fold.el'.
     Trying implicit prerequisite 's.org-fold.el'.
     Not found 's.org-fold.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-fold.el'.
     Trying implicit prerequisite 'SCCS/s.org-fold.el'.
     Not found 'SCCS/s.org-fold.el'.
     Trying harder.
    No implicit rule found for 'org-fold.el'.
   Finished prerequisites of target file 'org-fold.el'.
   No need to remake target 'org-fold.el'.
   Considering target file 'org-footnote.el'.
    Looking for an implicit rule for 'org-footnote.el'.
     Trying pattern rule '%:: %,v' with stem 'org-footnote.el'.
     Trying implicit prerequisite 'org-footnote.el,v'.
     Not found 'org-footnote.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-footnote.el'.
     Trying implicit prerequisite 'RCS/org-footnote.el,v'.
     Not found 'RCS/org-footnote.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-footnote.el'.
     Trying implicit prerequisite 'RCS/org-footnote.el'.
     Not found 'RCS/org-footnote.el'.
     Trying pattern rule '%:: s.%' with stem 'org-footnote.el'.
     Trying implicit prerequisite 's.org-footnote.el'.
     Not found 's.org-footnote.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-footnote.el'.
     Trying implicit prerequisite 'SCCS/s.org-footnote.el'.
     Not found 'SCCS/s.org-footnote.el'.
     Trying harder.
    No implicit rule found for 'org-footnote.el'.
   Finished prerequisites of target file 'org-footnote.el'.
   No need to remake target 'org-footnote.el'.
   Considering target file 'org-goto.el'.
    Looking for an implicit rule for 'org-goto.el'.
     Trying pattern rule '%:: %,v' with stem 'org-goto.el'.
     Trying implicit prerequisite 'org-goto.el,v'.
     Not found 'org-goto.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-goto.el'.
     Trying implicit prerequisite 'RCS/org-goto.el,v'.
     Not found 'RCS/org-goto.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-goto.el'.
     Trying implicit prerequisite 'RCS/org-goto.el'.
     Not found 'RCS/org-goto.el'.
     Trying pattern rule '%:: s.%' with stem 'org-goto.el'.
     Trying implicit prerequisite 's.org-goto.el'.
     Not found 's.org-goto.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-goto.el'.
     Trying implicit prerequisite 'SCCS/s.org-goto.el'.
     Not found 'SCCS/s.org-goto.el'.
     Trying harder.
    No implicit rule found for 'org-goto.el'.
   Finished prerequisites of target file 'org-goto.el'.
   No need to remake target 'org-goto.el'.
   Considering target file 'org-habit.el'.
    Looking for an implicit rule for 'org-habit.el'.
     Trying pattern rule '%:: %,v' with stem 'org-habit.el'.
     Trying implicit prerequisite 'org-habit.el,v'.
     Not found 'org-habit.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-habit.el'.
     Trying implicit prerequisite 'RCS/org-habit.el,v'.
     Not found 'RCS/org-habit.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-habit.el'.
     Trying implicit prerequisite 'RCS/org-habit.el'.
     Not found 'RCS/org-habit.el'.
     Trying pattern rule '%:: s.%' with stem 'org-habit.el'.
     Trying implicit prerequisite 's.org-habit.el'.
     Not found 's.org-habit.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-habit.el'.
     Trying implicit prerequisite 'SCCS/s.org-habit.el'.
     Not found 'SCCS/s.org-habit.el'.
     Trying harder.
    No implicit rule found for 'org-habit.el'.
   Finished prerequisites of target file 'org-habit.el'.
   No need to remake target 'org-habit.el'.
   Considering target file 'org-id.el'.
    Looking for an implicit rule for 'org-id.el'.
     Trying pattern rule '%:: %,v' with stem 'org-id.el'.
     Trying implicit prerequisite 'org-id.el,v'.
     Not found 'org-id.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-id.el'.
     Trying implicit prerequisite 'RCS/org-id.el,v'.
     Not found 'RCS/org-id.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-id.el'.
     Trying implicit prerequisite 'RCS/org-id.el'.
     Not found 'RCS/org-id.el'.
     Trying pattern rule '%:: s.%' with stem 'org-id.el'.
     Trying implicit prerequisite 's.org-id.el'.
     Not found 's.org-id.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-id.el'.
     Trying implicit prerequisite 'SCCS/s.org-id.el'.
     Not found 'SCCS/s.org-id.el'.
     Trying harder.
    No implicit rule found for 'org-id.el'.
   Finished prerequisites of target file 'org-id.el'.
   No need to remake target 'org-id.el'.
   Considering target file 'org-indent.el'.
    Looking for an implicit rule for 'org-indent.el'.
     Trying pattern rule '%:: %,v' with stem 'org-indent.el'.
     Trying implicit prerequisite 'org-indent.el,v'.
     Not found 'org-indent.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-indent.el'.
     Trying implicit prerequisite 'RCS/org-indent.el,v'.
     Not found 'RCS/org-indent.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-indent.el'.
     Trying implicit prerequisite 'RCS/org-indent.el'.
     Not found 'RCS/org-indent.el'.
     Trying pattern rule '%:: s.%' with stem 'org-indent.el'.
     Trying implicit prerequisite 's.org-indent.el'.
     Not found 's.org-indent.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-indent.el'.
     Trying implicit prerequisite 'SCCS/s.org-indent.el'.
     Not found 'SCCS/s.org-indent.el'.
     Trying harder.
    No implicit rule found for 'org-indent.el'.
   Finished prerequisites of target file 'org-indent.el'.
   No need to remake target 'org-indent.el'.
   Considering target file 'org-inlinetask.el'.
    Looking for an implicit rule for 'org-inlinetask.el'.
     Trying pattern rule '%:: %,v' with stem 'org-inlinetask.el'.
     Trying implicit prerequisite 'org-inlinetask.el,v'.
     Not found 'org-inlinetask.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-inlinetask.el'.
     Trying implicit prerequisite 'RCS/org-inlinetask.el,v'.
     Not found 'RCS/org-inlinetask.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-inlinetask.el'.
     Trying implicit prerequisite 'RCS/org-inlinetask.el'.
     Not found 'RCS/org-inlinetask.el'.
     Trying pattern rule '%:: s.%' with stem 'org-inlinetask.el'.
     Trying implicit prerequisite 's.org-inlinetask.el'.
     Not found 's.org-inlinetask.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-inlinetask.el'.
     Trying implicit prerequisite 'SCCS/s.org-inlinetask.el'.
     Not found 'SCCS/s.org-inlinetask.el'.
     Trying harder.
    No implicit rule found for 'org-inlinetask.el'.
   Finished prerequisites of target file 'org-inlinetask.el'.
   No need to remake target 'org-inlinetask.el'.
   Considering target file 'org-keys.el'.
    Looking for an implicit rule for 'org-keys.el'.
     Trying pattern rule '%:: %,v' with stem 'org-keys.el'.
     Trying implicit prerequisite 'org-keys.el,v'.
     Not found 'org-keys.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-keys.el'.
     Trying implicit prerequisite 'RCS/org-keys.el,v'.
     Not found 'RCS/org-keys.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-keys.el'.
     Trying implicit prerequisite 'RCS/org-keys.el'.
     Not found 'RCS/org-keys.el'.
     Trying pattern rule '%:: s.%' with stem 'org-keys.el'.
     Trying implicit prerequisite 's.org-keys.el'.
     Not found 's.org-keys.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-keys.el'.
     Trying implicit prerequisite 'SCCS/s.org-keys.el'.
     Not found 'SCCS/s.org-keys.el'.
     Trying harder.
    No implicit rule found for 'org-keys.el'.
   Finished prerequisites of target file 'org-keys.el'.
   No need to remake target 'org-keys.el'.
   Considering target file 'org-lint.el'.
    Looking for an implicit rule for 'org-lint.el'.
     Trying pattern rule '%:: %,v' with stem 'org-lint.el'.
     Trying implicit prerequisite 'org-lint.el,v'.
     Not found 'org-lint.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-lint.el'.
     Trying implicit prerequisite 'RCS/org-lint.el,v'.
     Not found 'RCS/org-lint.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-lint.el'.
     Trying implicit prerequisite 'RCS/org-lint.el'.
     Not found 'RCS/org-lint.el'.
     Trying pattern rule '%:: s.%' with stem 'org-lint.el'.
     Trying implicit prerequisite 's.org-lint.el'.
     Not found 's.org-lint.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-lint.el'.
     Trying implicit prerequisite 'SCCS/s.org-lint.el'.
     Not found 'SCCS/s.org-lint.el'.
     Trying harder.
    No implicit rule found for 'org-lint.el'.
   Finished prerequisites of target file 'org-lint.el'.
   No need to remake target 'org-lint.el'.
   Considering target file 'org-list.el'.
    Looking for an implicit rule for 'org-list.el'.
     Trying pattern rule '%:: %,v' with stem 'org-list.el'.
     Trying implicit prerequisite 'org-list.el,v'.
     Not found 'org-list.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-list.el'.
     Trying implicit prerequisite 'RCS/org-list.el,v'.
     Not found 'RCS/org-list.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-list.el'.
     Trying implicit prerequisite 'RCS/org-list.el'.
     Not found 'RCS/org-list.el'.
     Trying pattern rule '%:: s.%' with stem 'org-list.el'.
     Trying implicit prerequisite 's.org-list.el'.
     Not found 's.org-list.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-list.el'.
     Trying implicit prerequisite 'SCCS/s.org-list.el'.
     Not found 'SCCS/s.org-list.el'.
     Trying harder.
    No implicit rule found for 'org-list.el'.
   Finished prerequisites of target file 'org-list.el'.
   No need to remake target 'org-list.el'.
   Considering target file 'org-macro.el'.
    Looking for an implicit rule for 'org-macro.el'.
     Trying pattern rule '%:: %,v' with stem 'org-macro.el'.
     Trying implicit prerequisite 'org-macro.el,v'.
     Not found 'org-macro.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-macro.el'.
     Trying implicit prerequisite 'RCS/org-macro.el,v'.
     Not found 'RCS/org-macro.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-macro.el'.
     Trying implicit prerequisite 'RCS/org-macro.el'.
     Not found 'RCS/org-macro.el'.
     Trying pattern rule '%:: s.%' with stem 'org-macro.el'.
     Trying implicit prerequisite 's.org-macro.el'.
     Not found 's.org-macro.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-macro.el'.
     Trying implicit prerequisite 'SCCS/s.org-macro.el'.
     Not found 'SCCS/s.org-macro.el'.
     Trying harder.
    No implicit rule found for 'org-macro.el'.
   Finished prerequisites of target file 'org-macro.el'.
   No need to remake target 'org-macro.el'.
   Considering target file 'org-macs.el'.
    Looking for an implicit rule for 'org-macs.el'.
     Trying pattern rule '%:: %,v' with stem 'org-macs.el'.
     Trying implicit prerequisite 'org-macs.el,v'.
     Not found 'org-macs.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-macs.el'.
     Trying implicit prerequisite 'RCS/org-macs.el,v'.
     Not found 'RCS/org-macs.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-macs.el'.
     Trying implicit prerequisite 'RCS/org-macs.el'.
     Not found 'RCS/org-macs.el'.
     Trying pattern rule '%:: s.%' with stem 'org-macs.el'.
     Trying implicit prerequisite 's.org-macs.el'.
     Not found 's.org-macs.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-macs.el'.
     Trying implicit prerequisite 'SCCS/s.org-macs.el'.
     Not found 'SCCS/s.org-macs.el'.
     Trying harder.
    No implicit rule found for 'org-macs.el'.
   Finished prerequisites of target file 'org-macs.el'.
   No need to remake target 'org-macs.el'.
   Considering target file 'org-mobile.el'.
    Looking for an implicit rule for 'org-mobile.el'.
     Trying pattern rule '%:: %,v' with stem 'org-mobile.el'.
     Trying implicit prerequisite 'org-mobile.el,v'.
     Not found 'org-mobile.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-mobile.el'.
     Trying implicit prerequisite 'RCS/org-mobile.el,v'.
     Not found 'RCS/org-mobile.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-mobile.el'.
     Trying implicit prerequisite 'RCS/org-mobile.el'.
     Not found 'RCS/org-mobile.el'.
     Trying pattern rule '%:: s.%' with stem 'org-mobile.el'.
     Trying implicit prerequisite 's.org-mobile.el'.
     Not found 's.org-mobile.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-mobile.el'.
     Trying implicit prerequisite 'SCCS/s.org-mobile.el'.
     Not found 'SCCS/s.org-mobile.el'.
     Trying harder.
    No implicit rule found for 'org-mobile.el'.
   Finished prerequisites of target file 'org-mobile.el'.
   No need to remake target 'org-mobile.el'.
   Considering target file 'org-mouse.el'.
    Looking for an implicit rule for 'org-mouse.el'.
     Trying pattern rule '%:: %,v' with stem 'org-mouse.el'.
     Trying implicit prerequisite 'org-mouse.el,v'.
     Not found 'org-mouse.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-mouse.el'.
     Trying implicit prerequisite 'RCS/org-mouse.el,v'.
     Not found 'RCS/org-mouse.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-mouse.el'.
     Trying implicit prerequisite 'RCS/org-mouse.el'.
     Not found 'RCS/org-mouse.el'.
     Trying pattern rule '%:: s.%' with stem 'org-mouse.el'.
     Trying implicit prerequisite 's.org-mouse.el'.
     Not found 's.org-mouse.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-mouse.el'.
     Trying implicit prerequisite 'SCCS/s.org-mouse.el'.
     Not found 'SCCS/s.org-mouse.el'.
     Trying harder.
    No implicit rule found for 'org-mouse.el'.
   Finished prerequisites of target file 'org-mouse.el'.
   No need to remake target 'org-mouse.el'.
   Considering target file 'org-num.el'.
    Looking for an implicit rule for 'org-num.el'.
     Trying pattern rule '%:: %,v' with stem 'org-num.el'.
     Trying implicit prerequisite 'org-num.el,v'.
     Not found 'org-num.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-num.el'.
     Trying implicit prerequisite 'RCS/org-num.el,v'.
     Not found 'RCS/org-num.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-num.el'.
     Trying implicit prerequisite 'RCS/org-num.el'.
     Not found 'RCS/org-num.el'.
     Trying pattern rule '%:: s.%' with stem 'org-num.el'.
     Trying implicit prerequisite 's.org-num.el'.
     Not found 's.org-num.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-num.el'.
     Trying implicit prerequisite 'SCCS/s.org-num.el'.
     Not found 'SCCS/s.org-num.el'.
     Trying harder.
    No implicit rule found for 'org-num.el'.
   Finished prerequisites of target file 'org-num.el'.
   No need to remake target 'org-num.el'.
   Considering target file 'org-pcomplete.el'.
    Looking for an implicit rule for 'org-pcomplete.el'.
     Trying pattern rule '%:: %,v' with stem 'org-pcomplete.el'.
     Trying implicit prerequisite 'org-pcomplete.el,v'.
     Not found 'org-pcomplete.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-pcomplete.el'.
     Trying implicit prerequisite 'RCS/org-pcomplete.el,v'.
     Not found 'RCS/org-pcomplete.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-pcomplete.el'.
     Trying implicit prerequisite 'RCS/org-pcomplete.el'.
     Not found 'RCS/org-pcomplete.el'.
     Trying pattern rule '%:: s.%' with stem 'org-pcomplete.el'.
     Trying implicit prerequisite 's.org-pcomplete.el'.
     Not found 's.org-pcomplete.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-pcomplete.el'.
     Trying implicit prerequisite 'SCCS/s.org-pcomplete.el'.
     Not found 'SCCS/s.org-pcomplete.el'.
     Trying harder.
    No implicit rule found for 'org-pcomplete.el'.
   Finished prerequisites of target file 'org-pcomplete.el'.
   No need to remake target 'org-pcomplete.el'.
   Considering target file 'org-persist.el'.
    Looking for an implicit rule for 'org-persist.el'.
     Trying pattern rule '%:: %,v' with stem 'org-persist.el'.
     Trying implicit prerequisite 'org-persist.el,v'.
     Not found 'org-persist.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-persist.el'.
     Trying implicit prerequisite 'RCS/org-persist.el,v'.
     Not found 'RCS/org-persist.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-persist.el'.
     Trying implicit prerequisite 'RCS/org-persist.el'.
     Not found 'RCS/org-persist.el'.
     Trying pattern rule '%:: s.%' with stem 'org-persist.el'.
     Trying implicit prerequisite 's.org-persist.el'.
     Not found 's.org-persist.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-persist.el'.
     Trying implicit prerequisite 'SCCS/s.org-persist.el'.
     Not found 'SCCS/s.org-persist.el'.
     Trying harder.
    No implicit rule found for 'org-persist.el'.
   Finished prerequisites of target file 'org-persist.el'.
   No need to remake target 'org-persist.el'.
   Considering target file 'org-plot.el'.
    Looking for an implicit rule for 'org-plot.el'.
     Trying pattern rule '%:: %,v' with stem 'org-plot.el'.
     Trying implicit prerequisite 'org-plot.el,v'.
     Not found 'org-plot.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-plot.el'.
     Trying implicit prerequisite 'RCS/org-plot.el,v'.
     Not found 'RCS/org-plot.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-plot.el'.
     Trying implicit prerequisite 'RCS/org-plot.el'.
     Not found 'RCS/org-plot.el'.
     Trying pattern rule '%:: s.%' with stem 'org-plot.el'.
     Trying implicit prerequisite 's.org-plot.el'.
     Not found 's.org-plot.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-plot.el'.
     Trying implicit prerequisite 'SCCS/s.org-plot.el'.
     Not found 'SCCS/s.org-plot.el'.
     Trying harder.
    No implicit rule found for 'org-plot.el'.
   Finished prerequisites of target file 'org-plot.el'.
   No need to remake target 'org-plot.el'.
   Considering target file 'org-protocol.el'.
    Looking for an implicit rule for 'org-protocol.el'.
     Trying pattern rule '%:: %,v' with stem 'org-protocol.el'.
     Trying implicit prerequisite 'org-protocol.el,v'.
     Not found 'org-protocol.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-protocol.el'.
     Trying implicit prerequisite 'RCS/org-protocol.el,v'.
     Not found 'RCS/org-protocol.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-protocol.el'.
     Trying implicit prerequisite 'RCS/org-protocol.el'.
     Not found 'RCS/org-protocol.el'.
     Trying pattern rule '%:: s.%' with stem 'org-protocol.el'.
     Trying implicit prerequisite 's.org-protocol.el'.
     Not found 's.org-protocol.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-protocol.el'.
     Trying implicit prerequisite 'SCCS/s.org-protocol.el'.
     Not found 'SCCS/s.org-protocol.el'.
     Trying harder.
    No implicit rule found for 'org-protocol.el'.
   Finished prerequisites of target file 'org-protocol.el'.
   No need to remake target 'org-protocol.el'.
   Considering target file 'org-refile.el'.
    Looking for an implicit rule for 'org-refile.el'.
     Trying pattern rule '%:: %,v' with stem 'org-refile.el'.
     Trying implicit prerequisite 'org-refile.el,v'.
     Not found 'org-refile.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-refile.el'.
     Trying implicit prerequisite 'RCS/org-refile.el,v'.
     Not found 'RCS/org-refile.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-refile.el'.
     Trying implicit prerequisite 'RCS/org-refile.el'.
     Not found 'RCS/org-refile.el'.
     Trying pattern rule '%:: s.%' with stem 'org-refile.el'.
     Trying implicit prerequisite 's.org-refile.el'.
     Not found 's.org-refile.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-refile.el'.
     Trying implicit prerequisite 'SCCS/s.org-refile.el'.
     Not found 'SCCS/s.org-refile.el'.
     Trying harder.
    No implicit rule found for 'org-refile.el'.
   Finished prerequisites of target file 'org-refile.el'.
   No need to remake target 'org-refile.el'.
   Considering target file 'org-src.el'.
    Looking for an implicit rule for 'org-src.el'.
     Trying pattern rule '%:: %,v' with stem 'org-src.el'.
     Trying implicit prerequisite 'org-src.el,v'.
     Not found 'org-src.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-src.el'.
     Trying implicit prerequisite 'RCS/org-src.el,v'.
     Not found 'RCS/org-src.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-src.el'.
     Trying implicit prerequisite 'RCS/org-src.el'.
     Not found 'RCS/org-src.el'.
     Trying pattern rule '%:: s.%' with stem 'org-src.el'.
     Trying implicit prerequisite 's.org-src.el'.
     Not found 's.org-src.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-src.el'.
     Trying implicit prerequisite 'SCCS/s.org-src.el'.
     Not found 'SCCS/s.org-src.el'.
     Trying harder.
    No implicit rule found for 'org-src.el'.
   Finished prerequisites of target file 'org-src.el'.
   No need to remake target 'org-src.el'.
   Considering target file 'org-table.el'.
    Looking for an implicit rule for 'org-table.el'.
     Trying pattern rule '%:: %,v' with stem 'org-table.el'.
     Trying implicit prerequisite 'org-table.el,v'.
     Not found 'org-table.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-table.el'.
     Trying implicit prerequisite 'RCS/org-table.el,v'.
     Not found 'RCS/org-table.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-table.el'.
     Trying implicit prerequisite 'RCS/org-table.el'.
     Not found 'RCS/org-table.el'.
     Trying pattern rule '%:: s.%' with stem 'org-table.el'.
     Trying implicit prerequisite 's.org-table.el'.
     Not found 's.org-table.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-table.el'.
     Trying implicit prerequisite 'SCCS/s.org-table.el'.
     Not found 'SCCS/s.org-table.el'.
     Trying harder.
    No implicit rule found for 'org-table.el'.
   Finished prerequisites of target file 'org-table.el'.
   No need to remake target 'org-table.el'.
   Considering target file 'org-tempo.el'.
    Looking for an implicit rule for 'org-tempo.el'.
     Trying pattern rule '%:: %,v' with stem 'org-tempo.el'.
     Trying implicit prerequisite 'org-tempo.el,v'.
     Not found 'org-tempo.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-tempo.el'.
     Trying implicit prerequisite 'RCS/org-tempo.el,v'.
     Not found 'RCS/org-tempo.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-tempo.el'.
     Trying implicit prerequisite 'RCS/org-tempo.el'.
     Not found 'RCS/org-tempo.el'.
     Trying pattern rule '%:: s.%' with stem 'org-tempo.el'.
     Trying implicit prerequisite 's.org-tempo.el'.
     Not found 's.org-tempo.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-tempo.el'.
     Trying implicit prerequisite 'SCCS/s.org-tempo.el'.
     Not found 'SCCS/s.org-tempo.el'.
     Trying harder.
    No implicit rule found for 'org-tempo.el'.
   Finished prerequisites of target file 'org-tempo.el'.
   No need to remake target 'org-tempo.el'.
   Considering target file 'org-timer.el'.
    Looking for an implicit rule for 'org-timer.el'.
     Trying pattern rule '%:: %,v' with stem 'org-timer.el'.
     Trying implicit prerequisite 'org-timer.el,v'.
     Not found 'org-timer.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org-timer.el'.
     Trying implicit prerequisite 'RCS/org-timer.el,v'.
     Not found 'RCS/org-timer.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org-timer.el'.
     Trying implicit prerequisite 'RCS/org-timer.el'.
     Not found 'RCS/org-timer.el'.
     Trying pattern rule '%:: s.%' with stem 'org-timer.el'.
     Trying implicit prerequisite 's.org-timer.el'.
     Not found 's.org-timer.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org-timer.el'.
     Trying implicit prerequisite 'SCCS/s.org-timer.el'.
     Not found 'SCCS/s.org-timer.el'.
     Trying harder.
    No implicit rule found for 'org-timer.el'.
   Finished prerequisites of target file 'org-timer.el'.
   No need to remake target 'org-timer.el'.
   Considering target file 'org.el'.
    Looking for an implicit rule for 'org.el'.
     Trying pattern rule '%:: %,v' with stem 'org.el'.
     Trying implicit prerequisite 'org.el,v'.
     Not found 'org.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'org.el'.
     Trying implicit prerequisite 'RCS/org.el,v'.
     Not found 'RCS/org.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'org.el'.
     Trying implicit prerequisite 'RCS/org.el'.
     Not found 'RCS/org.el'.
     Trying pattern rule '%:: s.%' with stem 'org.el'.
     Trying implicit prerequisite 's.org.el'.
     Not found 's.org.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'org.el'.
     Trying implicit prerequisite 'SCCS/s.org.el'.
     Not found 'SCCS/s.org.el'.
     Trying harder.
    No implicit rule found for 'org.el'.
   Finished prerequisites of target file 'org.el'.
   No need to remake target 'org.el'.
   Considering target file 'ox-ascii.el'.
    Looking for an implicit rule for 'ox-ascii.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-ascii.el'.
     Trying implicit prerequisite 'ox-ascii.el,v'.
     Not found 'ox-ascii.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-ascii.el'.
     Trying implicit prerequisite 'RCS/ox-ascii.el,v'.
     Not found 'RCS/ox-ascii.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-ascii.el'.
     Trying implicit prerequisite 'RCS/ox-ascii.el'.
     Not found 'RCS/ox-ascii.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-ascii.el'.
     Trying implicit prerequisite 's.ox-ascii.el'.
     Not found 's.ox-ascii.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-ascii.el'.
     Trying implicit prerequisite 'SCCS/s.ox-ascii.el'.
     Not found 'SCCS/s.ox-ascii.el'.
     Trying harder.
    No implicit rule found for 'ox-ascii.el'.
   Finished prerequisites of target file 'ox-ascii.el'.
   No need to remake target 'ox-ascii.el'.
   Considering target file 'ox-beamer.el'.
    Looking for an implicit rule for 'ox-beamer.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-beamer.el'.
     Trying implicit prerequisite 'ox-beamer.el,v'.
     Not found 'ox-beamer.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-beamer.el'.
     Trying implicit prerequisite 'RCS/ox-beamer.el,v'.
     Not found 'RCS/ox-beamer.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-beamer.el'.
     Trying implicit prerequisite 'RCS/ox-beamer.el'.
     Not found 'RCS/ox-beamer.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-beamer.el'.
     Trying implicit prerequisite 's.ox-beamer.el'.
     Not found 's.ox-beamer.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-beamer.el'.
     Trying implicit prerequisite 'SCCS/s.ox-beamer.el'.
     Not found 'SCCS/s.ox-beamer.el'.
     Trying harder.
    No implicit rule found for 'ox-beamer.el'.
   Finished prerequisites of target file 'ox-beamer.el'.
   No need to remake target 'ox-beamer.el'.
   Considering target file 'ox-html.el'.
    Looking for an implicit rule for 'ox-html.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-html.el'.
     Trying implicit prerequisite 'ox-html.el,v'.
     Not found 'ox-html.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-html.el'.
     Trying implicit prerequisite 'RCS/ox-html.el,v'.
     Not found 'RCS/ox-html.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-html.el'.
     Trying implicit prerequisite 'RCS/ox-html.el'.
     Not found 'RCS/ox-html.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-html.el'.
     Trying implicit prerequisite 's.ox-html.el'.
     Not found 's.ox-html.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-html.el'.
     Trying implicit prerequisite 'SCCS/s.ox-html.el'.
     Not found 'SCCS/s.ox-html.el'.
     Trying harder.
    No implicit rule found for 'ox-html.el'.
   Finished prerequisites of target file 'ox-html.el'.
   No need to remake target 'ox-html.el'.
   Considering target file 'ox-icalendar.el'.
    Looking for an implicit rule for 'ox-icalendar.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-icalendar.el'.
     Trying implicit prerequisite 'ox-icalendar.el,v'.
     Not found 'ox-icalendar.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-icalendar.el'.
     Trying implicit prerequisite 'RCS/ox-icalendar.el,v'.
     Not found 'RCS/ox-icalendar.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-icalendar.el'.
     Trying implicit prerequisite 'RCS/ox-icalendar.el'.
     Not found 'RCS/ox-icalendar.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-icalendar.el'.
     Trying implicit prerequisite 's.ox-icalendar.el'.
     Not found 's.ox-icalendar.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-icalendar.el'.
     Trying implicit prerequisite 'SCCS/s.ox-icalendar.el'.
     Not found 'SCCS/s.ox-icalendar.el'.
     Trying harder.
    No implicit rule found for 'ox-icalendar.el'.
   Finished prerequisites of target file 'ox-icalendar.el'.
   No need to remake target 'ox-icalendar.el'.
   Considering target file 'ox-koma-letter.el'.
    Looking for an implicit rule for 'ox-koma-letter.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-koma-letter.el'.
     Trying implicit prerequisite 'ox-koma-letter.el,v'.
     Not found 'ox-koma-letter.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-koma-letter.el'.
     Trying implicit prerequisite 'RCS/ox-koma-letter.el,v'.
     Not found 'RCS/ox-koma-letter.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-koma-letter.el'.
     Trying implicit prerequisite 'RCS/ox-koma-letter.el'.
     Not found 'RCS/ox-koma-letter.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-koma-letter.el'.
     Trying implicit prerequisite 's.ox-koma-letter.el'.
     Not found 's.ox-koma-letter.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-koma-letter.el'.
     Trying implicit prerequisite 'SCCS/s.ox-koma-letter.el'.
     Not found 'SCCS/s.ox-koma-letter.el'.
     Trying harder.
    No implicit rule found for 'ox-koma-letter.el'.
   Finished prerequisites of target file 'ox-koma-letter.el'.
   No need to remake target 'ox-koma-letter.el'.
   Considering target file 'ox-latex.el'.
    Looking for an implicit rule for 'ox-latex.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-latex.el'.
     Trying implicit prerequisite 'ox-latex.el,v'.
     Not found 'ox-latex.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-latex.el'.
     Trying implicit prerequisite 'RCS/ox-latex.el,v'.
     Not found 'RCS/ox-latex.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-latex.el'.
     Trying implicit prerequisite 'RCS/ox-latex.el'.
     Not found 'RCS/ox-latex.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-latex.el'.
     Trying implicit prerequisite 's.ox-latex.el'.
     Not found 's.ox-latex.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-latex.el'.
     Trying implicit prerequisite 'SCCS/s.ox-latex.el'.
     Not found 'SCCS/s.ox-latex.el'.
     Trying harder.
    No implicit rule found for 'ox-latex.el'.
   Finished prerequisites of target file 'ox-latex.el'.
   No need to remake target 'ox-latex.el'.
   Considering target file 'ox-man.el'.
    Looking for an implicit rule for 'ox-man.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-man.el'.
     Trying implicit prerequisite 'ox-man.el,v'.
     Not found 'ox-man.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-man.el'.
     Trying implicit prerequisite 'RCS/ox-man.el,v'.
     Not found 'RCS/ox-man.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-man.el'.
     Trying implicit prerequisite 'RCS/ox-man.el'.
     Not found 'RCS/ox-man.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-man.el'.
     Trying implicit prerequisite 's.ox-man.el'.
     Not found 's.ox-man.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-man.el'.
     Trying implicit prerequisite 'SCCS/s.ox-man.el'.
     Not found 'SCCS/s.ox-man.el'.
     Trying harder.
    No implicit rule found for 'ox-man.el'.
   Finished prerequisites of target file 'ox-man.el'.
   No need to remake target 'ox-man.el'.
   Considering target file 'ox-md.el'.
    Looking for an implicit rule for 'ox-md.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-md.el'.
     Trying implicit prerequisite 'ox-md.el,v'.
     Not found 'ox-md.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-md.el'.
     Trying implicit prerequisite 'RCS/ox-md.el,v'.
     Not found 'RCS/ox-md.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-md.el'.
     Trying implicit prerequisite 'RCS/ox-md.el'.
     Not found 'RCS/ox-md.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-md.el'.
     Trying implicit prerequisite 's.ox-md.el'.
     Not found 's.ox-md.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-md.el'.
     Trying implicit prerequisite 'SCCS/s.ox-md.el'.
     Not found 'SCCS/s.ox-md.el'.
     Trying harder.
    No implicit rule found for 'ox-md.el'.
   Finished prerequisites of target file 'ox-md.el'.
   No need to remake target 'ox-md.el'.
   Considering target file 'ox-odt.el'.
    Looking for an implicit rule for 'ox-odt.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-odt.el'.
     Trying implicit prerequisite 'ox-odt.el,v'.
     Not found 'ox-odt.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-odt.el'.
     Trying implicit prerequisite 'RCS/ox-odt.el,v'.
     Not found 'RCS/ox-odt.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-odt.el'.
     Trying implicit prerequisite 'RCS/ox-odt.el'.
     Not found 'RCS/ox-odt.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-odt.el'.
     Trying implicit prerequisite 's.ox-odt.el'.
     Not found 's.ox-odt.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-odt.el'.
     Trying implicit prerequisite 'SCCS/s.ox-odt.el'.
     Not found 'SCCS/s.ox-odt.el'.
     Trying harder.
    No implicit rule found for 'ox-odt.el'.
   Finished prerequisites of target file 'ox-odt.el'.
   No need to remake target 'ox-odt.el'.
   Considering target file 'ox-org.el'.
    Looking for an implicit rule for 'ox-org.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-org.el'.
     Trying implicit prerequisite 'ox-org.el,v'.
     Not found 'ox-org.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-org.el'.
     Trying implicit prerequisite 'RCS/ox-org.el,v'.
     Not found 'RCS/ox-org.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-org.el'.
     Trying implicit prerequisite 'RCS/ox-org.el'.
     Not found 'RCS/ox-org.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-org.el'.
     Trying implicit prerequisite 's.ox-org.el'.
     Not found 's.ox-org.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-org.el'.
     Trying implicit prerequisite 'SCCS/s.ox-org.el'.
     Not found 'SCCS/s.ox-org.el'.
     Trying harder.
    No implicit rule found for 'ox-org.el'.
   Finished prerequisites of target file 'ox-org.el'.
   No need to remake target 'ox-org.el'.
   Considering target file 'ox-publish.el'.
    Looking for an implicit rule for 'ox-publish.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-publish.el'.
     Trying implicit prerequisite 'ox-publish.el,v'.
     Not found 'ox-publish.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-publish.el'.
     Trying implicit prerequisite 'RCS/ox-publish.el,v'.
     Not found 'RCS/ox-publish.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-publish.el'.
     Trying implicit prerequisite 'RCS/ox-publish.el'.
     Not found 'RCS/ox-publish.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-publish.el'.
     Trying implicit prerequisite 's.ox-publish.el'.
     Not found 's.ox-publish.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-publish.el'.
     Trying implicit prerequisite 'SCCS/s.ox-publish.el'.
     Not found 'SCCS/s.ox-publish.el'.
     Trying harder.
    No implicit rule found for 'ox-publish.el'.
   Finished prerequisites of target file 'ox-publish.el'.
   No need to remake target 'ox-publish.el'.
   Considering target file 'ox-texinfo.el'.
    Looking for an implicit rule for 'ox-texinfo.el'.
     Trying pattern rule '%:: %,v' with stem 'ox-texinfo.el'.
     Trying implicit prerequisite 'ox-texinfo.el,v'.
     Not found 'ox-texinfo.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox-texinfo.el'.
     Trying implicit prerequisite 'RCS/ox-texinfo.el,v'.
     Not found 'RCS/ox-texinfo.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox-texinfo.el'.
     Trying implicit prerequisite 'RCS/ox-texinfo.el'.
     Not found 'RCS/ox-texinfo.el'.
     Trying pattern rule '%:: s.%' with stem 'ox-texinfo.el'.
     Trying implicit prerequisite 's.ox-texinfo.el'.
     Not found 's.ox-texinfo.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox-texinfo.el'.
     Trying implicit prerequisite 'SCCS/s.ox-texinfo.el'.
     Not found 'SCCS/s.ox-texinfo.el'.
     Trying harder.
    No implicit rule found for 'ox-texinfo.el'.
   Finished prerequisites of target file 'ox-texinfo.el'.
   No need to remake target 'ox-texinfo.el'.
   Considering target file 'ox.el'.
    Looking for an implicit rule for 'ox.el'.
     Trying pattern rule '%:: %,v' with stem 'ox.el'.
     Trying implicit prerequisite 'ox.el,v'.
     Not found 'ox.el,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'ox.el'.
     Trying implicit prerequisite 'RCS/ox.el,v'.
     Not found 'RCS/ox.el,v'.
     Trying pattern rule '%:: RCS/%' with stem 'ox.el'.
     Trying implicit prerequisite 'RCS/ox.el'.
     Not found 'RCS/ox.el'.
     Trying pattern rule '%:: s.%' with stem 'ox.el'.
     Trying implicit prerequisite 's.ox.el'.
     Not found 's.ox.el'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'ox.el'.
     Trying implicit prerequisite 'SCCS/s.ox.el'.
     Not found 'SCCS/s.ox.el'.
     Trying harder.
    No implicit rule found for 'ox.el'.
   Finished prerequisites of target file 'ox.el'.
   No need to remake target 'ox.el'.
  Finished prerequisites of target file 'org-version.el'.
  Must remake target 'org-version.el'.
Makefile:55: update target 'org-version.el' due to: target does not exist
echo "org-version: 9.7-pre (release_9.6.17-1082-g6dab5c)"
Putting child 0x60000036c0c0 (org-version.el) PID 10479 on the chain.
Live child 0x60000036c0c0 (org-version.el) PID 10479 
org-version: 9.7-pre (release_9.6.17-1082-g6dab5c)
Reaping winning child 0x60000036c0c0 PID 10479 
rm -f org-version.el
Live child 0x60000036c0c0 (org-version.el) PID 10480 
Reaping winning child 0x60000036c0c0 PID 10480 
emacs  -Q -batch --eval '(setq vc-handled-backends nil org-startup-folded nil org-element-cache-persistent nil)' --eval '(add-to-list '"'"'load-path ".")' --eval '(load "org-compat.el")' --eval '(load "../mk/org-fixup.el")' --eval '(org-make-org-version "9.7-pre" "release_9.6.17-1082-g6dab5c")'
Live child 0x60000036c0c0 (org-version.el) PID 10481 
Reaping winning child 0x60000036c0c0 PID 10481 
Removing child 0x60000036c0c0 PID 10481 from chain.
  Successfully remade target file 'org-version.el'.
  Pruning file 'ob-C.el'.
  Pruning file 'ob-R.el'.
  Pruning file 'ob-awk.el'.
  Pruning file 'ob-calc.el'.
  Pruning file 'ob-clojure.el'.
  Pruning file 'ob-comint.el'.
  Pruning file 'ob-core.el'.
  Pruning file 'ob-css.el'.
  Pruning file 'ob-ditaa.el'.
  Pruning file 'ob-dot.el'.
  Pruning file 'ob-emacs-lisp.el'.
  Pruning file 'ob-eshell.el'.
  Pruning file 'ob-eval.el'.
  Pruning file 'ob-exp.el'.
  Pruning file 'ob-forth.el'.
  Pruning file 'ob-fortran.el'.
  Pruning file 'ob-gnuplot.el'.
  Pruning file 'ob-groovy.el'.
  Pruning file 'ob-haskell.el'.
  Pruning file 'ob-java.el'.
  Pruning file 'ob-js.el'.
  Pruning file 'ob-julia.el'.
  Pruning file 'ob-latex.el'.
  Pruning file 'ob-lilypond.el'.
  Pruning file 'ob-lisp.el'.
  Pruning file 'ob-lob.el'.
  Pruning file 'ob-lua.el'.
  Pruning file 'ob-makefile.el'.
  Pruning file 'ob-matlab.el'.
  Pruning file 'ob-maxima.el'.
  Pruning file 'ob-ocaml.el'.
  Pruning file 'ob-octave.el'.
  Pruning file 'ob-org.el'.
  Pruning file 'ob-perl.el'.
  Pruning file 'ob-plantuml.el'.
  Pruning file 'ob-processing.el'.
  Pruning file 'ob-python.el'.
  Pruning file 'ob-ref.el'.
  Pruning file 'ob-ruby.el'.
  Pruning file 'ob-sass.el'.
  Pruning file 'ob-scheme.el'.
  Pruning file 'ob-screen.el'.
  Pruning file 'ob-sed.el'.
  Pruning file 'ob-shell.el'.
  Pruning file 'ob-sql.el'.
  Pruning file 'ob-sqlite.el'.
  Pruning file 'ob-table.el'.
  Pruning file 'ob-tangle.el'.
  Pruning file 'ob.el'.
  Pruning file 'oc-basic.el'.
  Pruning file 'oc-biblatex.el'.
  Pruning file 'oc-bibtex.el'.
  Pruning file 'oc-csl.el'.
  Pruning file 'oc-natbib.el'.
  Pruning file 'oc.el'.
  Pruning file 'ol-bbdb.el'.
  Pruning file 'ol-bibtex.el'.
  Pruning file 'ol-docview.el'.
  Pruning file 'ol-doi.el'.
  Pruning file 'ol-eshell.el'.
  Pruning file 'ol-eww.el'.
  Pruning file 'ol-gnus.el'.
  Pruning file 'ol-info.el'.
  Pruning file 'ol-irc.el'.
  Pruning file 'ol-man.el'.
  Pruning file 'ol-mhe.el'.
  Pruning file 'ol-rmail.el'.
  Pruning file 'ol-w3m.el'.
  Pruning file 'ol.el'.
  Pruning file 'org-agenda.el'.
  Pruning file 'org-archive.el'.
  Pruning file 'org-attach-git.el'.
  Pruning file 'org-attach.el'.
  Pruning file 'org-capture.el'.
  Pruning file 'org-clock.el'.
  Pruning file 'org-colview.el'.
  Pruning file 'org-compat.el'.
  Pruning file 'org-crypt.el'.
  Pruning file 'org-ctags.el'.
  Pruning file 'org-cycle.el'.
  Pruning file 'org-datetree.el'.
  Pruning file 'org-duration.el'.
  Pruning file 'org-element-ast.el'.
  Pruning file 'org-element.el'.
  Pruning file 'org-entities.el'.
  Pruning file 'org-faces.el'.
  Pruning file 'org-feed.el'.
  Pruning file 'org-fold-core.el'.
  Pruning file 'org-fold.el'.
  Pruning file 'org-footnote.el'.
  Pruning file 'org-goto.el'.
  Pruning file 'org-habit.el'.
  Pruning file 'org-id.el'.
  Pruning file 'org-indent.el'.
  Pruning file 'org-inlinetask.el'.
  Pruning file 'org-keys.el'.
  Pruning file 'org-lint.el'.
  Pruning file 'org-list.el'.
  Pruning file 'org-macro.el'.
  Pruning file 'org-macs.el'.
  Pruning file 'org-mobile.el'.
  Pruning file 'org-mouse.el'.
  Pruning file 'org-num.el'.
  Pruning file 'org-pcomplete.el'.
  Pruning file 'org-persist.el'.
  Pruning file 'org-plot.el'.
  Pruning file 'org-protocol.el'.
  Pruning file 'org-refile.el'.
  Pruning file 'org-src.el'.
  Pruning file 'org-table.el'.
  Pruning file 'org-tempo.el'.
  Pruning file 'org-timer.el'.
  Pruning file 'org.el'.
  Pruning file 'ox-ascii.el'.
  Pruning file 'ox-beamer.el'.
  Pruning file 'ox-html.el'.
  Pruning file 'ox-icalendar.el'.
  Pruning file 'ox-koma-letter.el'.
  Pruning file 'ox-latex.el'.
  Pruning file 'ox-man.el'.
  Pruning file 'ox-md.el'.
  Pruning file 'ox-odt.el'.
  Pruning file 'ox-org.el'.
  Pruning file 'ox-publish.el'.
  Pruning file 'ox-texinfo.el'.
  Pruning file 'ox.el'.
 Finished prerequisites of target file 'org-loaddefs.el'.
 Must remake target 'org-loaddefs.el'.
Makefile:60: update target 'org-loaddefs.el' due to: target does not exist
echo "org-loaddefs: 9.7-pre (release_9.6.17-1082-g6dab5c)"
Putting child 0x60000036c0c0 (org-loaddefs.el) PID 10482 on the chain.
Live child 0x60000036c0c0 (org-loaddefs.el) PID 10482 
org-loaddefs: 9.7-pre (release_9.6.17-1082-g6dab5c)
Reaping winning child 0x60000036c0c0 PID 10482 
rm -f org-loaddefs.el
Live child 0x60000036c0c0 (org-loaddefs.el) PID 10483 
Reaping winning child 0x60000036c0c0 PID 10483 
emacs  -Q -batch --eval '(setq vc-handled-backends nil org-startup-folded nil org-element-cache-persistent nil)' --eval '(add-to-list '"'"'load-path ".")' --eval '(load "org-compat.el")' --eval '(load "../mk/org-fixup.el")' --eval '(org-make-org-loaddefs)'
Live child 0x60000036c0c0 (org-loaddefs.el) PID 10484 
Reaping winning child 0x60000036c0c0 PID 10484 
Removing child 0x60000036c0c0 PID 10484 from chain.
 Successfully remade target file 'org-loaddefs.el'.
 Pruning file 'org-version.el'.
Finished prerequisites of target file 'autoloads'.
Must remake target 'autoloads'.
Successfully remade target file 'autoloads'.
make[1]: Leaving directory '/Users/aavanian/Documents/Admin/dot-files/emacs-profiles/org-test/org-mode/lisp'
Reaping winning child 0x600003238480 PID 10477 
Removing child 0x600003238480 PID 10477 from chain.
 Successfully remade target file 'autoloads'.
Finished prerequisites of target file 'repro'.
Must remake target 'repro'.
mk/targets.mk:130: update target 'repro' due to: target is .PHONY
emacs  -Q  --eval '(add-to-list '"'"'load-path (concat default-directory "lisp"))' --eval '(add-to-list '"'"'load-path (concat default-directory "testing"))'  -l org -f org-version --eval "(setq debug-on-error t debug-on-signal nil debug-on-quit nil org-element--cache-self-verify 'backtrace org-element--cache-self-verify-frequency 1.0 org-element--cache-map-statistics t)"  &
Putting child 0x600003238480 (repro) PID 10493 on the chain.
Live child 0x600003238480 (repro) PID 10493 
Reaping winning child 0x600003238480 PID 10493 
Removing child 0x600003238480 PID 10493 from chain.
Successfully remade target file 'repro'.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-23  2:35                   ` dark.key8799
@ 2024-01-24 15:02                     ` Ihor Radchenko
  2024-01-24 15:59                       ` dark.key8799
  0 siblings, 1 reply; 14+ messages in thread
From: Ihor Radchenko @ 2024-01-24 15:02 UTC (permalink / raw)
  To: dark.key8799; +Cc: emacs-orgmode

dark.key8799@151e.ai writes:

> On Tue, Jan 23, 2024, at 03:57, Ihor Radchenko wrote:
>> May you post the output of
>
> There you go, I infer emacs is launched from $HOME since the two evals in the command launching emacs lead to `load-path' being prepended with "~/lisp" and "~/testing".

Thanks!
What is the value of `default-directory' if you run the following from
Org git folder?

emacs  -Q  --eval '(add-to-list '"'"'load-path (concat default-directory "lisp"))' --eval '(add-to-list '"'"'load-path (concat default-directory "testing"))'  -l org -f org-version --eval "(setq debug-on-error t debug-on-signal nil debug-on-quit nil org-element--cache-self-verify 'backtrace org-element--cache-self-verify-frequency 1.0 org-element--cache-map-statistics t)"  &

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-24 15:02                     ` Ihor Radchenko
@ 2024-01-24 15:59                       ` dark.key8799
  2024-01-24 16:12                         ` Ihor Radchenko
  0 siblings, 1 reply; 14+ messages in thread
From: dark.key8799 @ 2024-01-24 15:59 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode



On Wed, Jan 24, 2024, at 23:02, Ihor Radchenko wrote:
> What is the value of `default-directory' if you run the following from
> Org git folder?
>
> emacs  -Q  --eval '(add-to-list '"'"'load-path (concat 
> default-directory "lisp"))' --eval '(add-to-list '"'"'load-path (concat 
> default-directory "testing"))'  -l org -f org-version --eval "(setq 
> debug-on-error t debug-on-signal nil debug-on-quit nil 
> org-element--cache-self-verify 'backtrace 
> org-element--cache-self-verify-frequency 1.0 
> org-element--cache-map-statistics t)"  &

in that case, it works, `default-directory' is the Org git folder, `load-path' has been correctly set and the Org that has been loaded is from the git repo.

-- 
Alexandre Avanian


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Slowness of org-agenda-redo in org 9.7 vs 9.6.7
  2024-01-24 15:59                       ` dark.key8799
@ 2024-01-24 16:12                         ` Ihor Radchenko
  0 siblings, 0 replies; 14+ messages in thread
From: Ihor Radchenko @ 2024-01-24 16:12 UTC (permalink / raw)
  To: dark.key8799; +Cc: emacs-orgmode

dark.key8799@151e.ai writes:

> On Wed, Jan 24, 2024, at 23:02, Ihor Radchenko wrote:
>> What is the value of `default-directory' if you run the following from
>> Org git folder?
> ...
> in that case, it works, `default-directory' is the Org git folder, `load-path' has been correctly set and the Org that has been loaded is from the git repo.

Very strange. Looks like something wrong about your make installation.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2024-01-24 16:09 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-19 10:35 Slowness of org-agenda-redo in org 9.7 vs 9.6.7 dark.key8799
2024-01-19 12:57 ` Ihor Radchenko
2024-01-19 13:49   ` dark.key8799
2024-01-19 14:00     ` Ihor Radchenko
2024-01-19 14:50       ` dark.key8799
2024-01-19 15:15         ` Ihor Radchenko
2024-01-22  6:09           ` dark.key8799
2024-01-22 12:05             ` Ihor Radchenko
2024-01-22 15:36               ` dark.key8799
2024-01-22 19:57                 ` Ihor Radchenko
2024-01-23  2:35                   ` dark.key8799
2024-01-24 15:02                     ` Ihor Radchenko
2024-01-24 15:59                       ` dark.key8799
2024-01-24 16:12                         ` Ihor Radchenko

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).