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

Subversion Repositories or1k

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

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 56 joel
# Makefile.in generated automatically by automake 1.3 from Makefile.am
2 39 lampret
 
3 56 joel
# Copyright (C) 1994, 1995, 1996, 1997, 1998 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 39 lampret
 
8 56 joel
# 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 39 lampret
 
13
 
14 56 joel
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
DISTDIR =
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@
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
MAINT = @MAINT@
68
MAKEINFO = @MAKEINFO@
69
NEWLIB_CFLAGS = @NEWLIB_CFLAGS@
70
PACKAGE = @PACKAGE@
71
RANLIB = @RANLIB@
72
VERSION = @VERSION@
73
machine_dir = @machine_dir@
74
newlib_basedir = @newlib_basedir@
75
sys_dir = @sys_dir@
76
 
77
AUTOMAKE_OPTIONS = cygnus
78
 
79
INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
80
 
81
noinst_LIBRARIES = lib.a
82
 
83
COPYOFILES = \
84 39 lampret
        read.o \
85
        open.o \
86
        _exit.o \
87
        write.o \
88
        lseek.o \
89
        close.o \
90
        sbrk.o \
91
        cerror.o \
92
        fork.o \
93
        isatty.o \
94
        ioctl.o \
95
        getpid.o \
96
        time.o \
97
        kill.o \
98
        wait.o \
99
        execve.o \
100
        gettimeofday.o \
101
        link.o \
102
        unlink.o \
103
        fstat.o \
104
        times.o  \
105
        getrusage.o
106
 
107 56 joel
lib_a_SOURCES = _main.c
108
lib_a_LIBADD = $(COPYOFILES)
109 39 lampret
 
110 56 joel
ACLOCAL_AMFLAGS = -I ../../..
111
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
112
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
113
mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../mkinstalldirs
114
CONFIG_CLEAN_FILES =
115
LIBRARIES =  $(noinst_LIBRARIES)
116 39 lampret
 
117
 
118 56 joel
DEFS = @DEFS@ -I. -I$(srcdir)
119
CPPFLAGS = @CPPFLAGS@
120
LDFLAGS = @LDFLAGS@
121
LIBS = @LIBS@
122
lib_a_DEPENDENCIES =  read.o open.o _exit.o write.o lseek.o close.o \
123
sbrk.o cerror.o fork.o isatty.o ioctl.o getpid.o time.o kill.o wait.o \
124
execve.o gettimeofday.o link.o unlink.o fstat.o times.o getrusage.o
125
lib_a_OBJECTS =  _main.o
126
CFLAGS = @CFLAGS@
127
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
128
LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
129
DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 configure configure.in
130 39 lampret
 
131 56 joel
 
132
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
133
 
134
TAR = tar
135
GZIP = --best
136
SOURCES = $(lib_a_SOURCES)
137
OBJECTS = $(lib_a_OBJECTS)
138
 
139
all: Makefile $(LIBRARIES)
140
 
141
.SUFFIXES:
142
.SUFFIXES: .S .c .o .s
143
$(srcdir)/Makefile.in: @MAINT@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
144
        cd $(top_srcdir) && $(AUTOMAKE) --cygnus Makefile
145
 
146
Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
147
        cd $(top_builddir) \
148
          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
149
 
150
$(ACLOCAL_M4): @MAINT@ configure.in  ../../../acinclude.m4 \
151
                ../../../aclocal.m4
152
        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
153
 
154
config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
155
        $(SHELL) ./config.status --recheck
156
$(srcdir)/configure: @MAINT@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
157
        cd $(srcdir) && $(AUTOCONF)
158
 
159
mostlyclean-noinstLIBRARIES:
160
 
161
clean-noinstLIBRARIES:
162
        -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
163
 
164
distclean-noinstLIBRARIES:
165
 
166
maintainer-clean-noinstLIBRARIES:
167
 
168
.c.o:
169
        $(COMPILE) -c $<
170
 
171
.s.o:
172
        $(COMPILE) -c $<
173
 
174
.S.o:
175
        $(COMPILE) -c $<
176
 
177
mostlyclean-compile:
178
        -rm -f *.o core *.core
179
 
180
clean-compile:
181
 
182
distclean-compile:
183
        -rm -f *.tab.c
184
 
185
maintainer-clean-compile:
186
 
187
lib.a: $(lib_a_OBJECTS) $(lib_a_DEPENDENCIES)
188
        -rm -f lib.a
189
        $(AR) cru lib.a $(lib_a_OBJECTS) $(lib_a_LIBADD)
190
        $(RANLIB) lib.a
191
 
192
tags: TAGS
193
 
194
ID: $(HEADERS) $(SOURCES) $(LISP)
195
        here=`pwd` && cd $(srcdir) \
196
          && mkid -f$$here/ID $(SOURCES) $(HEADERS) $(LISP)
197
 
198
TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
199
        tags=; \
200
        here=`pwd`; \
201
        list='$(SOURCES) $(HEADERS)'; \
202
        unique=`for i in $$list; do echo $$i; done | \
203
          awk '    { files[$$0] = 1; } \
204
               END { for (i in files) print i; }'`; \
205
        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
206
          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
207
 
208
mostlyclean-tags:
209
 
210
clean-tags:
211
 
212
distclean-tags:
213
        -rm -f TAGS ID
214
 
215
maintainer-clean-tags:
216
 
217
distdir = $(PACKAGE)-$(VERSION)
218
top_distdir = $(distdir)
219
 
220
# This target untars the dist file and tries a VPATH configuration.  Then
221
# it guarantees that the distribution is self-contained by making another
222
# tarfile.
223
distcheck: dist
224
        -rm -rf $(distdir)
225
        GZIP=$(GZIP) $(TAR) zxf $(distdir).tar.gz
226
        mkdir $(distdir)/=build
227
        mkdir $(distdir)/=inst
228
        dc_install_base=`cd $(distdir)/=inst && pwd`; \
229
        cd $(distdir)/=build \
230
          && ../configure --srcdir=.. --prefix=$$dc_install_base \
231
          && $(MAKE) $(AM_MAKEFLAGS) \
232
          && $(MAKE) $(AM_MAKEFLAGS) dvi \
233
          && $(MAKE) $(AM_MAKEFLAGS) check \
234
          && $(MAKE) $(AM_MAKEFLAGS) install \
235
          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
236
          && $(MAKE) $(AM_MAKEFLAGS) dist
237
        -rm -rf $(distdir)
238
        @echo "========================"; \
239
        echo "$(distdir).tar.gz is ready for distribution"; \
240
        echo "========================"
241
dist: distdir
242
        -chmod -R a+r $(distdir)
243
        GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)
244
        -rm -rf $(distdir)
245
dist-all: distdir
246
        -chmod -R a+r $(distdir)
247
        GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)
248
        -rm -rf $(distdir)
249
distdir: $(DISTFILES)
250
        -rm -rf $(distdir)
251
        mkdir $(distdir)
252
        -chmod 777 $(distdir)
253
        @for file in $(DISTFILES); do \
254
          if test -f $$file; then d=.; else d=$(srcdir); fi; \
255
          test -f $(distdir)/$$file \
256
          || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
257
          || cp -p $$d/$$file $(distdir)/$$file; \
258
        done
259
info:
260
dvi:
261
check:
262
        $(MAKE) $(AM_MAKEFLAGS)
263
installcheck:
264
install-info:
265
install-exec:
266
        @$(NORMAL_INSTALL)
267
 
268
install-data:
269
        @$(NORMAL_INSTALL)
270
 
271
install: install-exec install-data all
272
        @:
273
 
274
uninstall:
275
 
276
install-strip:
277
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
278
installdirs:
279
 
280
 
281
mostlyclean-generic:
282
        -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
283
 
284
clean-generic:
285
        -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
286
 
287
distclean-generic:
288
        -rm -f Makefile $(DISTCLEANFILES)
289
        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
290
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
291
 
292
maintainer-clean-generic:
293
        -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
294
        -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
295
mostlyclean:  mostlyclean-noinstLIBRARIES mostlyclean-compile \
296
                mostlyclean-tags mostlyclean-generic
297
 
298
clean:  clean-noinstLIBRARIES clean-compile clean-tags clean-generic \
299
                mostlyclean
300
 
301
distclean:  distclean-noinstLIBRARIES distclean-compile distclean-tags \
302
                distclean-generic clean
303
        -rm -f config.status
304
 
305
maintainer-clean:  maintainer-clean-noinstLIBRARIES \
306
                maintainer-clean-compile maintainer-clean-tags \
307
                maintainer-clean-generic distclean
308
        @echo "This command is intended for maintainers to use;"
309
        @echo "it deletes files that may require special tools to rebuild."
310
        -rm -f config.status
311
 
312
.PHONY: mostlyclean-noinstLIBRARIES distclean-noinstLIBRARIES \
313
clean-noinstLIBRARIES maintainer-clean-noinstLIBRARIES \
314
mostlyclean-compile distclean-compile clean-compile \
315
maintainer-clean-compile tags mostlyclean-tags distclean-tags \
316
clean-tags maintainer-clean-tags distdir info dvi installcheck \
317
install-info install-exec install-data install uninstall all \
318
installdirs mostlyclean-generic distclean-generic clean-generic \
319
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
320
 
321
 
322 39 lampret
$(COPYOFILES):
323
        ar x /lib/libc.a $(COPYOFILES)
324
 
325 56 joel
all: crt0.o
326
 
327 39 lampret
crt0.o:
328
        cp /lib/crt0.o crt0.o
329
 
330 56 joel
# Tell versions [3.59,3.63) of GNU make to not export all variables.
331
# Otherwise a system limit (for SysV at least) may be exceeded.
332
.NOEXPORT:

powered by: WebSVN 2.1.0

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