Mercurial > hg > xemacs-beta
comparison src/make-src-depend @ 4552:9c1cfceab252
Automated merge with file:/Sources/xemacs-21.5-checked-out
| author | Aidan Kehoe <kehoea@parhasard.net> |
|---|---|
| date | Thu, 13 Mar 2008 10:24:34 +0100 |
| parents | 6dffa171b748 |
| children | f23cd0184dcf |
comparison
equal
deleted
inserted
replaced
| 4551:6812571bfcb9 | 4552:9c1cfceab252 |
|---|---|
| 113 | 113 |
| 114 sub PrintDeps { | 114 sub PrintDeps { |
| 115 my $file = shift; | 115 my $file = shift; |
| 116 my $ofile = $file; $ofile =~ s/c$/o/; print "$ofile: "; | 116 my $ofile = $file; $ofile =~ s/c$/o/; print "$ofile: "; |
| 117 if (exists $uses{$file}{'lisp.h'}) { | 117 if (exists $uses{$file}{'lisp.h'}) { |
| 118 delete @{%{$uses{$file}}}{@LISP_H}; | 118 delete $uses{$file}{@LISP_H}; |
| 119 $uses{$file}{'$(LISP_H)'} = 1; | 119 $uses{$file}{'$(LISP_H)'} = 1; |
| 120 } | 120 } |
| 121 # Note: If both config.h and lisp.h are dependencies, config.h got deleted | 121 # Note: If both config.h and lisp.h are dependencies, config.h got deleted |
| 122 # by the last clause. | 122 # by the last clause. |
| 123 if (exists $uses{$file}{'config.h'}) { | 123 if (exists $uses{$file}{'config.h'}) { |
