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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [string/] [Makefile.in] - Blame information for rev 57

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 56 joel
# Makefile.in generated automatically by automake 1.3b 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 39 lampret
 
16 56 joel
srcdir = @srcdir@
17
top_srcdir = @top_srcdir@
18
VPATH = @srcdir@
19
prefix = @prefix@
20
exec_prefix = @exec_prefix@
21 39 lampret
 
22 56 joel
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 39 lampret
 
35 56 joel
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@
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
CRT0 = @CRT0@
67
EXEEXT = @EXEEXT@
68
LIBC_MACHINE_LIB = @LIBC_MACHINE_LIB@
69
LIBC_POSIX_LIB = @LIBC_POSIX_LIB@
70
LIBC_SIGNAL_DEF = @LIBC_SIGNAL_DEF@
71
LIBC_SIGNAL_LIB = @LIBC_SIGNAL_LIB@
72
LIBC_SYSCALL_LIB = @LIBC_SYSCALL_LIB@
73
LIBC_SYS_LIB = @LIBC_SYS_LIB@
74
LIBC_UNIX_LIB = @LIBC_UNIX_LIB@
75
MAINT = @MAINT@
76
MAKEINFO = @MAKEINFO@
77
NEWLIB_CFLAGS = @NEWLIB_CFLAGS@
78
PACKAGE = @PACKAGE@
79
RANLIB = @RANLIB@
80
VERSION = @VERSION@
81
mach_add_objs = @mach_add_objs@
82
machine_dir = @machine_dir@
83
newlib_basedir = @newlib_basedir@
84
sys_dir = @sys_dir@
85
 
86
AUTOMAKE_OPTIONS = cygnus
87
 
88
INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
89
 
90
noinst_LIBRARIES = lib.a
91
 
92
lib_a_SOURCES = \
93
        bcmp.c \
94
        bcopy.c \
95
        bzero.c \
96
        index.c \
97
        memchr.c \
98
        memcmp.c \
99
        memcpy.c \
100
        memmove.c \
101
        memset.c \
102
        rindex.c \
103
        strcat.c \
104
        strchr.c \
105
        strcmp.c \
106
        strcasecmp.c \
107
        strcoll.c \
108
        strcpy.c \
109
        strcspn.c \
110
        strerror.c \
111
        strlen.c  \
112
        strlwr.c \
113
        strncat.c \
114
        strncmp.c \
115
        strncasecmp.c \
116
        strncpy.c \
117
        strpbrk.c \
118
        strrchr.c \
119
        strspn.c \
120
        strtok.c \
121
        strtok_r.c \
122
        strupr.c \
123
        strxfrm.c  \
124
        strstr.c \
125
        u_strerr.c
126
 
127 39 lampret
CHEWOUT_FILES=\
128
bcmp.def        memcpy.def      strcmp.def      strncat.def strstr.def \
129
bcopy.def       memmove.def     strcoll.def     strncmp.def strtok.def \
130
bzero.def       memset.def      strcpy.def      strncpy.def strxfrm.def \
131
index.def       rindex.def      strcspn.def     strpbrk.def \
132
memchr.def      strcat.def      strerror.def    strrchr.def \
133
memcmp.def      strchr.def      strlen.def      strspn.def \
134
strcasecmp.def  strncasecmp.def strlwr.def      strupr.def
135
 
136 56 joel
SUFFIXES = .def
137 39 lampret
 
138 56 joel
CHEW = ../../doc/makedoc -f $(srcdir)/../../doc/doc.str
139 39 lampret
 
140 56 joel
TARGETDOC = ../tmp.texi
141 39 lampret
 
142 56 joel
CLEANFILES = $(CHEWOUT_FILES) *.ref
143
mkinstalldirs = $(SHELL) $(top_srcdir)/../../mkinstalldirs
144
CONFIG_CLEAN_FILES =
145
LIBRARIES =  $(noinst_LIBRARIES)
146 39 lampret
 
147
 
148 56 joel
DEFS = @DEFS@ -I. -I$(srcdir)
149
CPPFLAGS = @CPPFLAGS@
150
LDFLAGS = @LDFLAGS@
151
LIBS = @LIBS@
152
lib_a_LIBADD =
153
lib_a_OBJECTS =  bcmp.o bcopy.o bzero.o index.o memchr.o memcmp.o \
154
memcpy.o memmove.o memset.o rindex.o strcat.o strchr.o strcmp.o \
155
strcasecmp.o strcoll.o strcpy.o strcspn.o strerror.o strlen.o strlwr.o \
156
strncat.o strncmp.o strncasecmp.o strncpy.o strpbrk.o strrchr.o \
157
strspn.o strtok.o strtok_r.o strupr.o strxfrm.o strstr.o u_strerr.o
158
CFLAGS = @CFLAGS@
159
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
160
LINK = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
161
DIST_COMMON =  Makefile.am Makefile.in
162
 
163
 
164
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
165
 
166
TAR = tar
167
GZIP = --best
168
SOURCES = $(lib_a_SOURCES)
169
OBJECTS = $(lib_a_OBJECTS)
170
 
171
all: Makefile $(LIBRARIES)
172
 
173
.SUFFIXES:
174
.SUFFIXES: .S .c .def .o .s
175
$(srcdir)/Makefile.in: @MAINT@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
176
        cd $(top_srcdir) && $(AUTOMAKE) --cygnus string/Makefile
177
 
178
Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
179
        cd $(top_builddir) \
180
          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
181
 
182
 
183
mostlyclean-noinstLIBRARIES:
184
 
185
clean-noinstLIBRARIES:
186
        -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
187
 
188
distclean-noinstLIBRARIES:
189
 
190
maintainer-clean-noinstLIBRARIES:
191
 
192
.c.o:
193
        $(COMPILE) -c $<
194
 
195
.s.o:
196
        $(COMPILE) -c $<
197
 
198
.S.o:
199
        $(COMPILE) -c $<
200
 
201
mostlyclean-compile:
202
        -rm -f *.o core *.core
203
 
204
clean-compile:
205
 
206
distclean-compile:
207
        -rm -f *.tab.c
208
 
209
maintainer-clean-compile:
210
 
211
lib.a: $(lib_a_OBJECTS) $(lib_a_DEPENDENCIES)
212
        -rm -f lib.a
213
        $(AR) cru lib.a $(lib_a_OBJECTS) $(lib_a_LIBADD)
214
        $(RANLIB) lib.a
215
 
216
tags: TAGS
217
 
218
ID: $(HEADERS) $(SOURCES) $(LISP)
219
        here=`pwd` && cd $(srcdir) \
220
          && mkid -f$$here/ID $(SOURCES) $(HEADERS) $(LISP)
221
 
222
TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
223
        tags=; \
224
        here=`pwd`; \
225
        list='$(SOURCES) $(HEADERS)'; \
226
        unique=`for i in $$list; do echo $$i; done | \
227
          awk '    { files[$$0] = 1; } \
228
               END { for (i in files) print i; }'`; \
229
        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
230
          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
231
 
232
mostlyclean-tags:
233
 
234
clean-tags:
235
 
236
distclean-tags:
237
        -rm -f TAGS ID
238
 
239
maintainer-clean-tags:
240
 
241
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
242
 
243
subdir = string
244
 
245
distdir: $(DISTFILES)
246
        @for file in $(DISTFILES); do \
247
          if test -f $$file; then d=.; else d=$(srcdir); fi; \
248
          test -f $(distdir)/$$file \
249
          || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
250
          || cp -p $$d/$$file $(distdir)/$$file; \
251
        done
252
info:
253
dvi:
254
check:
255
installcheck:
256
install-info:
257
install-exec:
258
        @$(NORMAL_INSTALL)
259
 
260
install-data:
261
        @$(NORMAL_INSTALL)
262
 
263
install: install-exec install-data all
264
        @:
265
 
266
uninstall:
267
 
268
install-strip:
269
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
270
installdirs:
271
 
272
 
273
mostlyclean-generic:
274
 
275
clean-generic:
276
        -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
277
 
278
distclean-generic:
279
        -rm -f Makefile $(CONFIG_CLEAN_FILES)
280
        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
281
 
282
maintainer-clean-generic:
283
mostlyclean:  mostlyclean-noinstLIBRARIES mostlyclean-compile \
284
                mostlyclean-tags mostlyclean-generic
285
 
286
clean:  clean-noinstLIBRARIES clean-compile clean-tags clean-generic \
287
                mostlyclean
288
 
289
distclean:  distclean-noinstLIBRARIES distclean-compile distclean-tags \
290
                distclean-generic clean
291
        -rm -f config.status
292
 
293
maintainer-clean:  maintainer-clean-noinstLIBRARIES \
294
                maintainer-clean-compile maintainer-clean-tags \
295
                maintainer-clean-generic distclean
296
        @echo "This command is intended for maintainers to use;"
297
        @echo "it deletes files that may require special tools to rebuild."
298
 
299
.PHONY: mostlyclean-noinstLIBRARIES distclean-noinstLIBRARIES \
300
clean-noinstLIBRARIES maintainer-clean-noinstLIBRARIES \
301
mostlyclean-compile distclean-compile clean-compile \
302
maintainer-clean-compile tags mostlyclean-tags distclean-tags \
303
clean-tags maintainer-clean-tags distdir info dvi installcheck \
304
install-info install-exec install-data install uninstall all \
305
installdirs mostlyclean-generic distclean-generic clean-generic \
306
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
307
 
308
 
309
.c.def:
310
        $(CHEW) < $< > $*.def 2> $*.ref
311
        touch stmp-def
312
 
313
doc: $(CHEWOUT_FILES)
314
        cat $(srcdir)/strings.tex >> $(TARGETDOC)
315
 
316
# Tell versions [3.59,3.63) of GNU make to not export all variables.
317
# Otherwise a system limit (for SysV at least) may be exceeded.
318
.NOEXPORT:

powered by: WebSVN 2.1.0

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