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

Subversion Repositories vapi

[/] [vapi/] [trunk/] [Makefile.in] - Blame information for rev 13

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 markom
# 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
CC = @CC@
61
MAKEINFO = @MAKEINFO@
62
PACKAGE = @PACKAGE@
63
VERSION = @VERSION@
64
 
65 6 erez
bin_PROGRAMS = uart gpio
66 2 markom
 
67
uart_SOURCES = vapi.c vapi.h uart.c
68 6 erez
gpio_SOURCES = vapi.c vapi.h gpio.c
69 2 markom
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
70
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
71
CONFIG_CLEAN_FILES =
72
PROGRAMS =  $(bin_PROGRAMS)
73
 
74
 
75
DEFS = @DEFS@ -I. -I$(srcdir)
76
CPPFLAGS = @CPPFLAGS@
77
LDFLAGS = @LDFLAGS@
78
LIBS = @LIBS@
79
uart_OBJECTS =  vapi.o uart.o
80
uart_LDADD = $(LDADD)
81
uart_DEPENDENCIES =
82
uart_LDFLAGS =
83 6 erez
gpio_OBJECTS =  vapi.o gpio.o
84
gpio_LDADD = $(LDADD)
85
gpio_DEPENDENCIES =
86
gpio_LDFLAGS =
87 2 markom
CFLAGS = @CFLAGS@
88
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
89
CCLD = $(CC)
90
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
91 6 erez
DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 configure configure.in
92 2 markom
 
93
 
94
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
95
 
96
TAR = gtar
97
GZIP_ENV = --best
98 6 erez
DEP_FILES =  .deps/gpio.P .deps/uart.P .deps/vapi.P
99
SOURCES = $(uart_SOURCES) $(gpio_SOURCES)
100
OBJECTS = $(uart_OBJECTS) $(gpio_OBJECTS)
101 2 markom
 
102
all: all-redirect
103
.SUFFIXES:
104
.SUFFIXES: .S .c .o .s
105
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
106
        cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile
107
 
108
Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
109
        cd $(top_builddir) \
110
          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
111
 
112
$(ACLOCAL_M4):  configure.in
113
        cd $(srcdir) && $(ACLOCAL)
114
 
115
config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
116
        $(SHELL) ./config.status --recheck
117
$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
118
        cd $(srcdir) && $(AUTOCONF)
119
 
120
mostlyclean-binPROGRAMS:
121
 
122
clean-binPROGRAMS:
123
        -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
124
 
125
distclean-binPROGRAMS:
126
 
127
maintainer-clean-binPROGRAMS:
128
 
129
install-binPROGRAMS: $(bin_PROGRAMS)
130
        @$(NORMAL_INSTALL)
131
        $(mkinstalldirs) $(DESTDIR)$(bindir)
132
        @list='$(bin_PROGRAMS)'; for p in $$list; do \
133
          if test -f $$p; then \
134
            echo "  $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
135
             $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
136
          else :; fi; \
137
        done
138
 
139
uninstall-binPROGRAMS:
140
        @$(NORMAL_UNINSTALL)
141
        list='$(bin_PROGRAMS)'; for p in $$list; do \
142
          rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
143
        done
144
 
145
.s.o:
146
        $(COMPILE) -c $<
147
 
148
.S.o:
149
        $(COMPILE) -c $<
150
 
151
mostlyclean-compile:
152
        -rm -f *.o core *.core
153
 
154
clean-compile:
155
 
156
distclean-compile:
157
        -rm -f *.tab.c
158
 
159
maintainer-clean-compile:
160
 
161
uart: $(uart_OBJECTS) $(uart_DEPENDENCIES)
162
        @rm -f uart
163
        $(LINK) $(uart_LDFLAGS) $(uart_OBJECTS) $(uart_LDADD) $(LIBS)
164
 
165 6 erez
gpio: $(gpio_OBJECTS) $(gpio_DEPENDENCIES)
166
        @rm -f gpio
167
        $(LINK) $(gpio_LDFLAGS) $(gpio_OBJECTS) $(gpio_LDADD) $(LIBS)
168
 
169 2 markom
tags: TAGS
170
 
171
ID: $(HEADERS) $(SOURCES) $(LISP)
172
        list='$(SOURCES) $(HEADERS)'; \
173
        unique=`for i in $$list; do echo $$i; done | \
174
          awk '    { files[$$0] = 1; } \
175
               END { for (i in files) print i; }'`; \
176
        here=`pwd` && cd $(srcdir) \
177
          && mkid -f$$here/ID $$unique $(LISP)
178
 
179
TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
180
        tags=; \
181
        here=`pwd`; \
182
        list='$(SOURCES) $(HEADERS)'; \
183
        unique=`for i in $$list; do echo $$i; done | \
184
          awk '    { files[$$0] = 1; } \
185
               END { for (i in files) print i; }'`; \
186
        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
187
          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
188
 
189
mostlyclean-tags:
190
 
191
clean-tags:
192
 
193
distclean-tags:
194
        -rm -f TAGS ID
195
 
196
maintainer-clean-tags:
197
 
198
distdir = $(PACKAGE)-$(VERSION)
199
top_distdir = $(distdir)
200
 
201
# This target untars the dist file and tries a VPATH configuration.  Then
202
# it guarantees that the distribution is self-contained by making another
203
# tarfile.
204
distcheck: dist
205
        -rm -rf $(distdir)
206
        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
207
        mkdir $(distdir)/=build
208
        mkdir $(distdir)/=inst
209
        dc_install_base=`cd $(distdir)/=inst && pwd`; \
210
        cd $(distdir)/=build \
211
          && ../configure --srcdir=.. --prefix=$$dc_install_base \
212
          && $(MAKE) $(AM_MAKEFLAGS) \
213
          && $(MAKE) $(AM_MAKEFLAGS) dvi \
214
          && $(MAKE) $(AM_MAKEFLAGS) check \
215
          && $(MAKE) $(AM_MAKEFLAGS) install \
216
          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
217
          && $(MAKE) $(AM_MAKEFLAGS) dist
218
        -rm -rf $(distdir)
219
        @banner="$(distdir).tar.gz is ready for distribution"; \
220
        dashes=`echo "$$banner" | sed s/./=/g`; \
221
        echo "$$dashes"; \
222
        echo "$$banner"; \
223
        echo "$$dashes"
224
dist: distdir
225
        -chmod -R a+r $(distdir)
226
        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
227
        -rm -rf $(distdir)
228
dist-all: distdir
229
        -chmod -R a+r $(distdir)
230
        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
231
        -rm -rf $(distdir)
232
distdir: $(DISTFILES)
233
        -rm -rf $(distdir)
234
        mkdir $(distdir)
235
        -chmod 777 $(distdir)
236
        here=`cd $(top_builddir) && pwd`; \
237
        top_distdir=`cd $(distdir) && pwd`; \
238
        distdir=`cd $(distdir) && pwd`; \
239
        cd $(top_srcdir) \
240
          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Makefile
241
        @for file in $(DISTFILES); do \
242
          d=$(srcdir); \
243
          if test -d $$d/$$file; then \
244 6 erez
            cp -pr $$/$$file $(distdir)/$$file; \
245 2 markom
          else \
246
            test -f $(distdir)/$$file \
247
            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
248
            || cp -p $$d/$$file $(distdir)/$$file || :; \
249
          fi; \
250
        done
251
 
252
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
253
 
254
-include $(DEP_FILES)
255
 
256
mostlyclean-depend:
257
 
258
clean-depend:
259
 
260
distclean-depend:
261
        -rm -rf .deps
262
 
263
maintainer-clean-depend:
264
 
265
%.o: %.c
266
        @echo '$(COMPILE) -c $<'; \
267
        $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
268
        @-cp .deps/$(*F).pp .deps/$(*F).P; \
269
        tr ' ' '\012' < .deps/$(*F).pp \
270
          | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
271
            >> .deps/$(*F).P; \
272
        rm .deps/$(*F).pp
273
 
274
%.lo: %.c
275
        @echo '$(LTCOMPILE) -c $<'; \
276
        $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
277
        @-sed -e 's/^\([^:]*\)\.o[      ]*:/\1.lo \1.o :/' \
278
          < .deps/$(*F).pp > .deps/$(*F).P; \
279
        tr ' ' '\012' < .deps/$(*F).pp \
280
          | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
281
            >> .deps/$(*F).P; \
282
        rm -f .deps/$(*F).pp
283
info-am:
284
info: info-am
285
dvi-am:
286
dvi: dvi-am
287
check-am: all-am
288
check: check-am
289
installcheck-am:
290
installcheck: installcheck-am
291
install-exec-am: install-binPROGRAMS
292
install-exec: install-exec-am
293
 
294
install-data-am:
295
install-data: install-data-am
296
 
297
install-am: all-am
298
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
299
install: install-am
300
uninstall-am: uninstall-binPROGRAMS
301
uninstall: uninstall-am
302
all-am: Makefile $(PROGRAMS)
303
all-redirect: all-am
304
install-strip:
305
        $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
306
installdirs:
307
        $(mkinstalldirs)  $(DESTDIR)$(bindir)
308
 
309
 
310
mostlyclean-generic:
311
 
312
clean-generic:
313
 
314
distclean-generic:
315
        -rm -f Makefile $(CONFIG_CLEAN_FILES)
316
        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
317
 
318
maintainer-clean-generic:
319
mostlyclean-am:  mostlyclean-binPROGRAMS mostlyclean-compile \
320
                mostlyclean-tags mostlyclean-depend mostlyclean-generic
321
 
322
mostlyclean: mostlyclean-am
323
 
324
clean-am:  clean-binPROGRAMS clean-compile clean-tags clean-depend \
325
                clean-generic mostlyclean-am
326
 
327
clean: clean-am
328
 
329
distclean-am:  distclean-binPROGRAMS distclean-compile distclean-tags \
330
                distclean-depend distclean-generic clean-am
331
 
332
distclean: distclean-am
333
        -rm -f config.status
334
 
335
maintainer-clean-am:  maintainer-clean-binPROGRAMS \
336
                maintainer-clean-compile maintainer-clean-tags \
337
                maintainer-clean-depend maintainer-clean-generic \
338
                distclean-am
339
        @echo "This command is intended for maintainers to use;"
340
        @echo "it deletes files that may require special tools to rebuild."
341
 
342
maintainer-clean: maintainer-clean-am
343
        -rm -f config.status
344
 
345
.PHONY: mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \
346
maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \
347
mostlyclean-compile distclean-compile clean-compile \
348
maintainer-clean-compile tags mostlyclean-tags distclean-tags \
349
clean-tags maintainer-clean-tags distdir mostlyclean-depend \
350
distclean-depend clean-depend maintainer-clean-depend info-am info \
351
dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
352
install-exec install-data-am install-data install-am install \
353
uninstall-am uninstall all-redirect all-am all installdirs \
354
mostlyclean-generic distclean-generic clean-generic \
355
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
356
 
357
 
358
# Tell versions [3.59,3.63) of GNU make to not export all variables.
359
# Otherwise a system limit (for SysV at least) may be exceeded.
360
.NOEXPORT:

powered by: WebSVN 2.1.0

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