| OLD | NEW |
| 1 # Makefile template for Configure for the SH sim library. | 1 # Makefile template for Configure for the SH sim library. |
| 2 # Copyright (C) 1990-1992, 1995-1997, 2007-2012 Free Software | 2 # Copyright (C) 1990-2013 Free Software Foundation, Inc. |
| 3 # Foundation, Inc. | |
| 4 # Written by Cygnus Support. | 3 # Written by Cygnus Support. |
| 5 # | 4 # |
| 6 # This program is free software; you can redistribute it and/or modify | 5 # This program is free software; you can redistribute it and/or modify |
| 7 # it under the terms of the GNU General Public License as published by | 6 # it under the terms of the GNU General Public License as published by |
| 8 # the Free Software Foundation; either version 3 of the License, or | 7 # the Free Software Foundation; either version 3 of the License, or |
| 9 # (at your option) any later version. | 8 # (at your option) any later version. |
| 10 # | 9 # |
| 11 # This program is distributed in the hope that it will be useful, | 10 # This program is distributed in the hope that it will be useful, |
| 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| (...skipping 21 matching lines...) Expand all Loading... |
| 35 # indent table.c | 34 # indent table.c |
| 36 | 35 |
| 37 ppi.c: gencode | 36 ppi.c: gencode |
| 38 ./gencode -p >ppi.c | 37 ./gencode -p >ppi.c |
| 39 | 38 |
| 40 gencode: gencode.c | 39 gencode: gencode.c |
| 41 $(CC_FOR_BUILD) -o gencode $(srcdir)/gencode.c | 40 $(CC_FOR_BUILD) -o gencode $(srcdir)/gencode.c |
| 42 | 41 |
| 43 sh-clean: | 42 sh-clean: |
| 44 rm -f gencode code.c table.c | 43 rm -f gencode code.c table.c |
| OLD | NEW |