OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [sys/] [sparc64/] [Makefile.in] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1010 ivang
# Makefile.in generated automatically by automake 1.4 from Makefile.am
2
 
3
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
4
# This Makefile.in is free software; the Free Software Foundation
5
# gives unlimited permission to copy and/or distribute it,
6
# with or without modifications, as long as this notice is preserved.
7
 
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11
# PARTICULAR PURPOSE.
12
 
13
 
14
SHELL = @SHELL@
15
 
16
srcdir = @srcdir@
17
top_srcdir = @top_srcdir@
18
VPATH = @srcdir@
19
prefix = @prefix@
20
exec_prefix = @exec_prefix@
21
 
22
bindir = @bindir@
23
sbindir = @sbindir@
24
libexecdir = @libexecdir@
25
datadir = @datadir@
26
sysconfdir = @sysconfdir@
27
sharedstatedir = @sharedstatedir@
28
localstatedir = @localstatedir@
29
libdir = @libdir@
30
infodir = @infodir@
31
mandir = @mandir@
32
includedir = @includedir@
33
oldincludedir = /usr/include
34
 
35
DESTDIR =
36
 
37
pkgdatadir = $(datadir)/@PACKAGE@
38
pkglibdir = $(libdir)/@PACKAGE@
39
pkgincludedir = $(includedir)/@PACKAGE@
40
 
41
top_builddir = .
42
 
43
ACLOCAL = @ACLOCAL@
44
AUTOCONF = @AUTOCONF@
45
AUTOMAKE = @AUTOMAKE@
46
AUTOHEADER = @AUTOHEADER@
47
 
48
INSTALL = @INSTALL@
49
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
50
INSTALL_DATA = @INSTALL_DATA@
51
INSTALL_SCRIPT = @INSTALL_SCRIPT@
52
transform = @program_transform_name@
53
 
54
NORMAL_INSTALL = :
55
PRE_INSTALL = :
56
POST_INSTALL = :
57
NORMAL_UNINSTALL = :
58
PRE_UNINSTALL = :
59
POST_UNINSTALL = :
60
host_alias = @host_alias@
61
host_triplet = @host@
62
AR = @AR@
63
AS = @AS@
64
CC = @CC@
65
CPP = @CPP@
66
EXEEXT = @EXEEXT@
67
LDFLAGS = @LDFLAGS@
68
MAINT = @MAINT@
69
MAKEINFO = @MAKEINFO@
70
NEWLIB_CFLAGS = @NEWLIB_CFLAGS@
71
PACKAGE = @PACKAGE@
72
RANLIB = @RANLIB@
73
VERSION = @VERSION@
74
aext = @aext@
75
libm_machine_dir = @libm_machine_dir@
76
machine_dir = @machine_dir@
77
newlib_basedir = @newlib_basedir@
78
oext = @oext@
79
sys_dir = @sys_dir@
80
 
81
AUTOMAKE_OPTIONS = cygnus
82
 
83
INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
84
 
85
noinst_LIBRARIES = lib.a
86
 
87
# _r.o is for the reentrant syscall stubs.
88
 
89
SUFFIXES = _r.o
90
 
91
# We no longer copy files out of /lib/libc.a.  This is kept around until
92
# most of them have replacements.
93
#
94
#COPYOFILES = \
95
#       Ovfork.o _sigvec.o abort.o access.o chown.o creat.o \
96
#       errlst.o getdents.o getdtablesize.o getpid.o \
97
#       getrusage.o gettimeofday.o ieee_globals.o ioctl.o isatty.o \
98
#       kill.o popen.o sbrk.o sigblock.o sigpause.o sigsetmask.o \
99
#       sigtramp.o sigvec.o sleep.o setitimer.o start_float.o \
100
#       time.o times.o utime.o utimes.o wait3.o
101
COPYOFILES =
102
 
103
# These files are from Sun's libc.a but must be renamed because they
104
# conflict with other library .o's. They are renamed to xxxS.o.
105
# div.o is used by times.o. errno.o conflicts with libc/errno/errno.o.
106
#COPYRENAMEOFILES = divS.o errnoS.o
107
COPYRENAMEOFILES =
108
 
109
#COPYOMFILES = ieee_flags.o
110
COPYOMFILES =
111
 
112
# CFILES_R, SFILES_R, and TEMPLATE_SFILES_R define those system calls that are
113
# needed by the ANSI C part of newlib (and thus we must provide namespace
114
# clean versions of them because we define REENTRANT_SYSCALLS_PROVIDED).
115
 
116
CFILES = _main.c ieee.c \
117
        closedir.c opendir.c readdir.c rewinddir.c scandir.c seekdir.c \
118
        telldir.c \
119
        creat.c isatty.c utime2.c
120
 
121
 
122
CFILES_R =
123
 
124
SFILES = cerror.S crt0.S dup2.S execve.S _exit.S sigsetjmp.S utime.S
125
 
126
SFILES_R = sbrk.S wait.S
127
 
128
# List of files built from template.S (with an '_' suffix).
129
 
130
TEMPLATE_SFILES = access_ chdir_ chmod_ chown_ dup_ fcntl_ \
131
        lstat_ mkdir_ pipe_ rmdir_ times_ umask_ utimes_
132
 
133
 
134
TEMPLATE_SFILES_R = close_ fork_ fstat_ getpid_ gettimeofday_ kill_ \
135
        link_ lseek_ open_ read_ stat_ times_ unlink_ wait4_ write_
136
 
137
 
138
OFILES = $(COPYOFILES) $(COPYRENAMEOFILES) $(COPYOMFILES) \
139
        $(SFILES:.S=.o) $(SFILES_R:.S=.o) $(SFILES_R:.S=_r.o) \
140
        $(TEMPLATE_SFILES:_=.o) $(TEMPLATE_SFILES_R:_=.o) $(TEMPLATE_SFILES_R:_=_r.o) \
141
        $(CFILES:.c=.o) $(CFILES_R:.c=.o) $(CFILES_R:.c=_r.o)
142
 
143
 
144
lib_a_SOURCES = $(SFILES) $(SFILES_R) $(CFILES) $(CFILES_R)
145
lib_a_LIBADD = $(COPYOFILES) $(COPYRENAMEOFILES) $(COPYOMFILES) \
146
        $(SFILES_R:.S=_r.o) \
147
        $(TEMPLATE_SFILES:_=.o) $(TEMPLATE_SFILES_R:_=.o) \
148
        $(TEMPLATE_SFILES_R:_=_r.o) \
149
        $(CFILES_R:.c=_r.o)
150
 
151
 
152
ACLOCAL_AMFLAGS = -I ../../..
153
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
154
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
155
mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../mkinstalldirs
156
CONFIG_CLEAN_FILES =
157
LIBRARIES =  $(noinst_LIBRARIES)
158
 
159
 
160
DEFS = @DEFS@ -I. -I$(srcdir)
161
CPPFLAGS = @CPPFLAGS@
162
LIBS = @LIBS@
163
lib_a_DEPENDENCIES =  sbrk_r.o wait_r.o access.o chdir.o chmod.o chown.o \
164
dup.o fcntl.o lstat.o mkdir.o pipe.o rmdir.o times.o umask.o utimes.o \
165
close.o fork.o fstat.o getpid.o gettimeofday.o kill.o link.o lseek.o \
166
open.o read.o stat.o times.o unlink.o wait4.o write.o close_r.o \
167
fork_r.o fstat_r.o getpid_r.o gettimeofday_r.o kill_r.o link_r.o \
168
lseek_r.o open_r.o read_r.o stat_r.o times_r.o unlink_r.o wait4_r.o \
169
write_r.o
170
lib_a_OBJECTS =  cerror.o crt0.o dup2.o execve.o _exit.o sigsetjmp.o \
171
utime.o sbrk.o wait.o _main.o ieee.o closedir.o opendir.o readdir.o \
172
rewinddir.o scandir.o seekdir.o telldir.o creat.o isatty.o utime2.o
173
CFLAGS = @CFLAGS@
174
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
175
CCLD = $(CC)
176
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
177
DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 configure configure.in
178
 
179
 
180
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
181
 
182
TAR = gtar
183
GZIP_ENV = --best
184
SOURCES = $(lib_a_SOURCES)
185
OBJECTS = $(lib_a_OBJECTS)
186
 
187
all: all-redirect
188
.SUFFIXES:
189
.SUFFIXES: .S .c .o .s _r.o
190
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
191
        cd $(top_srcdir) && $(AUTOMAKE) --cygnus Makefile
192
 
193
Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
194
        cd $(top_builddir) \
195
          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
196
 
197
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in  \
198
                ../../../acinclude.m4 ../../../aclocal.m4
199
        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
200
 
201
config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
202
        $(SHELL) ./config.status --recheck
203
$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
204
        cd $(srcdir) && $(AUTOCONF)
205
 
206
mostlyclean-noinstLIBRARIES:
207
 
208
clean-noinstLIBRARIES:
209
        -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
210
 
211
distclean-noinstLIBRARIES:
212
 
213
maintainer-clean-noinstLIBRARIES:
214
 
215
.c.o:
216
        $(COMPILE) -c $<
217
 
218
.s.o:
219
        $(COMPILE) -c $<
220
 
221
.S.o:
222
        $(COMPILE) -c $<
223
 
224
mostlyclean-compile:
225
        -rm -f *.o core *.core
226
 
227
clean-compile:
228
 
229
distclean-compile:
230
        -rm -f *.tab.c
231
 
232
maintainer-clean-compile:
233
 
234
lib.a: $(lib_a_OBJECTS) $(lib_a_DEPENDENCIES)
235
        -rm -f lib.a
236
        $(AR) cru lib.a $(lib_a_OBJECTS) $(lib_a_LIBADD)
237
        $(RANLIB) lib.a
238
 
239
tags: TAGS
240
 
241
ID: $(HEADERS) $(SOURCES) $(LISP)
242
        list='$(SOURCES) $(HEADERS)'; \
243
        unique=`for i in $$list; do echo $$i; done | \
244
          awk '    { files[$$0] = 1; } \
245
               END { for (i in files) print i; }'`; \
246
        here=`pwd` && cd $(srcdir) \
247
          && mkid -f$$here/ID $$unique $(LISP)
248
 
249
TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
250
        tags=; \
251
        here=`pwd`; \
252
        list='$(SOURCES) $(HEADERS)'; \
253
        unique=`for i in $$list; do echo $$i; done | \
254
          awk '    { files[$$0] = 1; } \
255
               END { for (i in files) print i; }'`; \
256
        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
257
          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
258
 
259
mostlyclean-tags:
260
 
261
clean-tags:
262
 
263
distclean-tags:
264
        -rm -f TAGS ID
265
 
266
maintainer-clean-tags:
267
 
268
distdir = $(PACKAGE)-$(VERSION)
269
top_distdir = $(distdir)
270
 
271
# This target untars the dist file and tries a VPATH configuration.  Then
272
# it guarantees that the distribution is self-contained by making another
273
# tarfile.
274
distcheck: dist
275
        -rm -rf $(distdir)
276
        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
277
        mkdir $(distdir)/=build
278
        mkdir $(distdir)/=inst
279
        dc_install_base=`cd $(distdir)/=inst && pwd`; \
280
        cd $(distdir)/=build \
281
          && ../configure --srcdir=.. --prefix=$$dc_install_base \
282
          && $(MAKE) $(AM_MAKEFLAGS) \
283
          && $(MAKE) $(AM_MAKEFLAGS) dvi \
284
          && $(MAKE) $(AM_MAKEFLAGS) check \
285
          && $(MAKE) $(AM_MAKEFLAGS) install \
286
          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
287
          && $(MAKE) $(AM_MAKEFLAGS) dist
288
        -rm -rf $(distdir)
289
        @banner="$(distdir).tar.gz is ready for distribution"; \
290
        dashes=`echo "$$banner" | sed s/./=/g`; \
291
        echo "$$dashes"; \
292
        echo "$$banner"; \
293
        echo "$$dashes"
294
dist: distdir
295
        -chmod -R a+r $(distdir)
296
        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
297
        -rm -rf $(distdir)
298
dist-all: distdir
299
        -chmod -R a+r $(distdir)
300
        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
301
        -rm -rf $(distdir)
302
distdir: $(DISTFILES)
303
        -rm -rf $(distdir)
304
        mkdir $(distdir)
305
        -chmod 777 $(distdir)
306
        @for file in $(DISTFILES); do \
307
          if test -f $$file; then d=.; else d=$(srcdir); fi; \
308
          if test -d $$d/$$file; then \
309
            cp -pr $$d/$$file $(distdir)/$$file; \
310
          else \
311
            test -f $(distdir)/$$file \
312
            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
313
            || cp -p $$d/$$file $(distdir)/$$file || :; \
314
          fi; \
315
        done
316
info-am:
317
info: info-am
318
dvi-am:
319
dvi: dvi-am
320
check-am:
321
check: check-am
322
installcheck-am:
323
installcheck: installcheck-am
324
install-info-am:
325
install-info: install-info-am
326
install-exec-am:
327
install-exec: install-exec-am
328
 
329
install-data-am:
330
install-data: install-data-am
331
 
332
install-am: all-am
333
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
334
install: install-am
335
uninstall-am:
336
uninstall: uninstall-am
337
all-am: Makefile $(LIBRARIES)
338
all-redirect: all-am
339
install-strip:
340
        $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
341
installdirs:
342
 
343
 
344
mostlyclean-generic:
345
 
346
clean-generic:
347
 
348
distclean-generic:
349
        -rm -f Makefile $(CONFIG_CLEAN_FILES)
350
        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
351
 
352
maintainer-clean-generic:
353
mostlyclean-am:  mostlyclean-noinstLIBRARIES mostlyclean-compile \
354
                mostlyclean-tags mostlyclean-generic
355
 
356
mostlyclean: mostlyclean-am
357
 
358
clean-am:  clean-noinstLIBRARIES clean-compile clean-tags clean-generic \
359
                mostlyclean-am
360
 
361
clean: clean-am
362
 
363
distclean-am:  distclean-noinstLIBRARIES distclean-compile \
364
                distclean-tags distclean-generic clean-am
365
 
366
distclean: distclean-am
367
        -rm -f config.status
368
 
369
maintainer-clean-am:  maintainer-clean-noinstLIBRARIES \
370
                maintainer-clean-compile maintainer-clean-tags \
371
                maintainer-clean-generic distclean-am
372
        @echo "This command is intended for maintainers to use;"
373
        @echo "it deletes files that may require special tools to rebuild."
374
 
375
maintainer-clean: maintainer-clean-am
376
        -rm -f config.status
377
 
378
.PHONY: mostlyclean-noinstLIBRARIES distclean-noinstLIBRARIES \
379
clean-noinstLIBRARIES maintainer-clean-noinstLIBRARIES \
380
mostlyclean-compile distclean-compile clean-compile \
381
maintainer-clean-compile tags mostlyclean-tags distclean-tags \
382
clean-tags maintainer-clean-tags distdir info-am info dvi-am dvi check \
383
check-am installcheck-am installcheck install-info-am install-info \
384
install-exec-am install-exec install-data-am install-data install-am \
385
install uninstall-am uninstall all-redirect all-am all installdirs \
386
mostlyclean-generic distclean-generic clean-generic \
387
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
388
 
389
 
390
.S_r.o:
391
        $(COMPILE) -DREENT -c $< -o $@
392
 
393
.c_r.o:
394
        $(COMPILE) -DREENT -c $< -o $@
395
 
396
$(COPYOFILES):
397
        $(AR) x /lib/libc.a $(COPYOFILES)
398
 
399
$(COPYRENAMEOFILES):
400
        $(AR) x /lib/libc.a $(COPYRENAMEOFILES:S.o=.o)
401
        for f in $(COPYRENAMEOFILES); do mv `basename $$f S.o`.o $$f; done
402
 
403
$(COPYOMFILES):
404
        $(AR) x /lib/libm.a $(COPYOMFILES)
405
 
406
stamp-srcs: Makefile template.S template_r.S
407
        for f in $(TEMPLATE_SFILES:_=); do \
408
          $(COMPILE) -E -Dfunc=$$f $(srcdir)/template.S >$$f.S; \
409
        done
410
        for f in $(TEMPLATE_SFILES_R:_=); do \
411
          $(COMPILE) -E -Dfunc=$$f $(srcdir)/template_r.S | sed -e 's/^_/#/' >$$f.S; \
412
        done
413
        touch stamp-srcs
414
 
415
# Make a dependency for each file built from a template.
416
 
417
$(TEMPLATE_SFILES:_=.S) $(TEMPLATE_SFILES_R:_=.S): stamp-srcs
418
 
419
all: crt0.o
420
 
421
close_r.o: close.S
422
fork_r.o: fork.S
423
fstat_r.o: fstat.S
424
getpid_r.o: getpid.S
425
gettimeofday_r.o: gettimeofday.S
426
kill_r.o: kill.S
427
link_r.o: link.S
428
lseek_r.o: lseek.S
429
open_r.o: open.S
430
read_r.o: read.S
431
sbrk_r.o: sbrk.S
432
stat_r.o: stat.S
433
times_r.o: times.S
434
unlink_r.o: unlink.S
435
wait_r.o: wait.S
436
wait4_r.o: wait4.S
437
write_r.o: write.S
438
 
439
# Tell versions [3.59,3.63) of GNU make to not export all variables.
440
# Otherwise a system limit (for SysV at least) may be exceeded.
441
.NOEXPORT:

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.