| OLD | NEW |
| 1 ## Process this file with automake to generate Makefile.in | 1 ## Process this file with automake to generate Makefile.in |
| 2 | 2 |
| 3 AUTOMAKE_OPTIONS = cygnus | 3 AUTOMAKE_OPTIONS = cygnus |
| 4 | 4 |
| 5 if HAVE_POSIX_DIR | 5 if HAVE_POSIX_DIR |
| 6 POSIX_SUBDIR = posix | 6 POSIX_SUBDIR = posix |
| 7 endif | 7 endif |
| 8 | 8 |
| 9 if HAVE_SIGNAL_DIR | 9 if HAVE_SIGNAL_DIR |
| 10 SIGNAL_SUBDIR = signal | 10 # @LOCALMOD: pnacl does not use signal |
| 11 # SIGNAL_SUBDIR = signal |
| 11 endif | 12 endif |
| 12 | 13 |
| 13 if HAVE_SYSCALL_DIR | 14 if HAVE_SYSCALL_DIR |
| 14 SYSCALLS_SUBDIR = syscalls | 15 SYSCALLS_SUBDIR = syscalls |
| 15 endif | 16 endif |
| 16 | 17 |
| 17 if HAVE_UNIX_DIR | 18 if HAVE_UNIX_DIR |
| 18 UNIX_SUBDIR = unix | 19 UNIX_SUBDIR = unix |
| 19 endif | 20 endif |
| 20 | 21 |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 207 |
| 207 .PHONY: force | 208 .PHONY: force |
| 208 force: | 209 force: |
| 209 | 210 |
| 210 CLEANFILES = $(CRT0) \ | 211 CLEANFILES = $(CRT0) \ |
| 211 sigset.texi stmp-sigset extra.texi stmp-extra \ | 212 sigset.texi stmp-sigset extra.texi stmp-extra \ |
| 212 stdio64.texi stmp-stdio64 tmp.texi targetdep.tex stmp-targetdep | 213 stdio64.texi stmp-stdio64 tmp.texi targetdep.tex stmp-targetdep |
| 213 | 214 |
| 214 ACLOCAL_AMFLAGS = -I .. -I ../.. | 215 ACLOCAL_AMFLAGS = -I .. -I ../.. |
| 215 CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host | 216 CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host |
| OLD | NEW |