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 SIGNAL_SUBDIR = signal |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 for i in $(SUBLIBS); do \ | 110 for i in $(SUBLIBS); do \ |
111 $(AR) x ../$$i; \ | 111 $(AR) x ../$$i; \ |
112 done; \ | 112 done; \ |
113 $(AR) $(AR_FLAGS) ../$@ *.o | 113 $(AR) $(AR_FLAGS) ../$@ *.o |
114 $(RANLIB) $@ | 114 $(RANLIB) $@ |
115 rm -rf tmp | 115 rm -rf tmp |
116 endif # USE_LIBTOOL | 116 endif # USE_LIBTOOL |
117 | 117 |
118 $(SUBLIBS): ; @true | 118 $(SUBLIBS): ; @true |
119 | 119 |
120 crt0.o: sys/crt0.o | 120 crt0.o: $(wildcard sys/crt0.o) |
121 rm -f $@ | 121 rm -f $@ |
122 » ln sys/crt0.o $@ >/dev/null 2>/dev/null || cp sys/crt0.o $@ | 122 » if test -f sys/crt0.o; then ln sys/crt0.o $@ >/dev/null 2>/dev/null || c
p sys/crt0.o $@; fi |
123 | 123 |
124 sys/crt0.o: ; @true | 124 sys/crt0.o: ; @true |
125 | 125 |
126 # This is a list of the stmp-def files in each subdirectory which | 126 # This is a list of the stmp-def files in each subdirectory which |
127 # builds .def files. We don't list subdirectories which don't build | 127 # builds .def files. We don't list subdirectories which don't build |
128 # .def files; if the list of subdirectories changes, we must change | 128 # .def files; if the list of subdirectories changes, we must change |
129 # this as well. | 129 # this as well. |
130 SUBDEFS = \ | 130 SUBDEFS = \ |
131 stdlib/stmp-def \ | 131 stdlib/stmp-def \ |
132 ctype/stmp-def \ | 132 ctype/stmp-def \ |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 force: | 227 force: |
228 | 228 |
229 CLEANFILES = $(CRT0) \ | 229 CLEANFILES = $(CRT0) \ |
230 sigset.texi stmp-sigset extra.texi stmp-extra \ | 230 sigset.texi stmp-sigset extra.texi stmp-extra \ |
231 stdio64.texi stmp-stdio64 targetdep.tex stmp-targetdep \ | 231 stdio64.texi stmp-stdio64 targetdep.tex stmp-targetdep \ |
232 tmp-sigset.texi tmp-iconvset.texi tmp-extra.texi \ | 232 tmp-sigset.texi tmp-iconvset.texi tmp-extra.texi \ |
233 tmp-stdio64.texi tmp-posix.texi tmp-targetdep.texi | 233 tmp-stdio64.texi tmp-posix.texi tmp-targetdep.texi |
234 | 234 |
235 ACLOCAL_AMFLAGS = -I .. -I ../.. | 235 ACLOCAL_AMFLAGS = -I .. -I ../.. |
236 CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host | 236 CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host |
OLD | NEW |