source: trunk/gsdl/packages/yaz/client/Makefile.in@ 1343

Last change on this file since 1343 was 1343, checked in by johnmcp, 24 years ago

Added the YAZ toolkit source to the packages directory (for z39.50 stuff)

  • Property svn:keywords set to Author Date Id Revision
File size: 7.2 KB
Line 
1# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
2# This Makefile.in is free software; the Free Software Foundation
3# gives unlimited permission to copy and/or distribute it,
4# with or without modifications, as long as this notice is preserved.
5
6# This program is distributed in the hope that it will be useful,
7# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
8# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
9# PARTICULAR PURPOSE.
10
11
12SHELL = @SHELL@
13
14srcdir = @srcdir@
15top_srcdir = @top_srcdir@
16VPATH = @srcdir@
17prefix = @prefix@
18exec_prefix = @exec_prefix@
19
20bindir = @bindir@
21sbindir = @sbindir@
22libexecdir = @libexecdir@
23datadir = @datadir@
24sysconfdir = @sysconfdir@
25sharedstatedir = @sharedstatedir@
26localstatedir = @localstatedir@
27libdir = @libdir@
28infodir = @infodir@
29mandir = @mandir@
30includedir = @includedir@
31oldincludedir = /usr/include
32
33DESTDIR =
34
35pkgdatadir = $(datadir)/@PACKAGE@
36pkglibdir = $(libdir)/@PACKAGE@
37pkgincludedir = $(includedir)/@PACKAGE@
38
39top_builddir = ..
40
41ACLOCAL = @ACLOCAL@
42AUTOCONF = @AUTOCONF@
43AUTOMAKE = @AUTOMAKE@
44AUTOHEADER = @AUTOHEADER@
45
46INSTALL = @INSTALL@
47INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
48INSTALL_DATA = @INSTALL_DATA@
49INSTALL_SCRIPT = @INSTALL_SCRIPT@
50transform = @program_transform_name@
51
52NORMAL_INSTALL = :
53PRE_INSTALL = :
54POST_INSTALL = :
55NORMAL_UNINSTALL = :
56PRE_UNINSTALL = :
57POST_UNINSTALL = :
58ASNMODULE = @ASNMODULE@
59CC = @CC@
60CPP = @CPP@
61ILLLIB = @ILLLIB@
62ILLMODULE = @ILLMODULE@
63MAKEINFO = @MAKEINFO@
64PACKAGE = @PACKAGE@
65RANLIB = @RANLIB@
66SUBDIRS_VAR = @SUBDIRS_VAR@
67VERSION = @VERSION@
68have_sgml2html = @have_sgml2html@
69have_sgml2latex = @have_sgml2latex@
70have_sgml2txt = @have_sgml2txt@
71
72bin_PROGRAMS =
73
74yaz_client_SOURCES = yaz_zclient.c
75
76LDADD = ../lib/libyaz.a
77
78INCLUDES = -I../include -DCCLRPN=1
79mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
80CONFIG_CLEAN_FILES =
81PROGRAMS = $(bin_PROGRAMS)
82
83
84DEFS = @DEFS@ -I. -I$(srcdir)
85CPPFLAGS = @CPPFLAGS@
86LDFLAGS = @LDFLAGS@
87LIBS = @LIBS@
88yaz_client_OBJECTS = yaz_zclient.o
89yaz_client_LDADD = $(LDADD)
90yaz_client_DEPENDENCIES = ../lib/libyaz.a
91yaz_client_LDFLAGS =
92CFLAGS = @CFLAGS@
93COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
94CCLD = $(CC)
95LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
96DIST_COMMON = Makefile.am Makefile.in
97
98
99DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
100
101TAR = gtar
102GZIP_ENV = --best
103SOURCES = $(yaz_client_SOURCES)
104OBJECTS = $(yaz_client_OBJECTS)
105
106all: all-redirect
107.SUFFIXES:
108.SUFFIXES: .S .c .o .s
109$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
110 cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps client/Makefile
111
112Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
113 cd $(top_builddir) \
114 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
115
116
117mostlyclean-binPROGRAMS:
118
119clean-binPROGRAMS:
120 -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
121
122distclean-binPROGRAMS:
123
124maintainer-clean-binPROGRAMS:
125
126install-binPROGRAMS: $(bin_PROGRAMS)
127 @$(NORMAL_INSTALL)
128 $(mkinstalldirs) $(DESTDIR)$(bindir)
129 @list='$(bin_PROGRAMS)'; for p in $$list; do \
130 if test -f $$p; then \
131 echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
132 $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
133 else :; fi; \
134 done
135
136uninstall-binPROGRAMS:
137 @$(NORMAL_UNINSTALL)
138 list='$(bin_PROGRAMS)'; for p in $$list; do \
139 rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
140 done
141
142.c.o:
143 $(COMPILE) -c $<
144
145.s.o:
146 $(COMPILE) -c $<
147
148.S.o:
149 $(COMPILE) -c $<
150
151mostlyclean-compile:
152 -rm -f *.o core *.core
153
154clean-compile:
155
156distclean-compile:
157 -rm -f *.tab.c
158
159maintainer-clean-compile:
160
161yaz-client: $(yaz_client_OBJECTS) $(yaz_client_DEPENDENCIES)
162 @rm -f yaz-client
163 $(LINK) $(yaz_client_LDFLAGS) $(yaz_client_OBJECTS) $(yaz_client_LDADD) $(LIBS)
164
165tags: TAGS
166
167ID: $(HEADERS) $(SOURCES) $(LISP)
168 list='$(SOURCES) $(HEADERS)'; \
169 unique=`for i in $$list; do echo $$i; done | \
170 awk ' { files[$$0] = 1; } \
171 END { for (i in files) print i; }'`; \
172 here=`pwd` && cd $(srcdir) \
173 && mkid -f$$here/ID $$unique $(LISP)
174
175TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
176 tags=; \
177 here=`pwd`; \
178 list='$(SOURCES) $(HEADERS)'; \
179 unique=`for i in $$list; do echo $$i; done | \
180 awk ' { files[$$0] = 1; } \
181 END { for (i in files) print i; }'`; \
182 test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
183 || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
184
185mostlyclean-tags:
186
187clean-tags:
188
189distclean-tags:
190 -rm -f TAGS ID
191
192maintainer-clean-tags:
193
194distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
195
196subdir = client
197
198distdir: $(DISTFILES)
199 @for file in $(DISTFILES); do \
200 d=$(srcdir); \
201 if test -d $$d/$$file; then \
202 cp -pr $$/$$file $(distdir)/$$file; \
203 else \
204 test -f $(distdir)/$$file \
205 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
206 || cp -p $$d/$$file $(distdir)/$$file || :; \
207 fi; \
208 done
209
210info-am:
211info: info-am
212dvi-am:
213dvi: dvi-am
214check-am: all-am
215check: check-am
216installcheck-am:
217installcheck: installcheck-am
218install-exec-am: install-binPROGRAMS
219install-exec: install-exec-am
220
221install-data-am:
222install-data: install-data-am
223
224install-am: all-am
225 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
226install: install-am
227uninstall-am: uninstall-binPROGRAMS
228uninstall: uninstall-am
229all-am: Makefile $(PROGRAMS)
230all-redirect: all-am
231install-strip:
232 $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
233installdirs:
234 $(mkinstalldirs) $(DESTDIR)$(bindir)
235
236
237mostlyclean-generic:
238
239clean-generic:
240
241distclean-generic:
242 -rm -f Makefile $(CONFIG_CLEAN_FILES)
243 -rm -f config.cache config.log stamp-h stamp-h[0-9]*
244
245maintainer-clean-generic:
246mostlyclean-am: mostlyclean-binPROGRAMS mostlyclean-compile \
247 mostlyclean-tags mostlyclean-generic
248
249mostlyclean: mostlyclean-am
250
251clean-am: clean-binPROGRAMS clean-compile clean-tags clean-generic \
252 mostlyclean-am
253
254clean: clean-am
255
256distclean-am: distclean-binPROGRAMS distclean-compile distclean-tags \
257 distclean-generic clean-am
258
259distclean: distclean-am
260
261maintainer-clean-am: maintainer-clean-binPROGRAMS \
262 maintainer-clean-compile maintainer-clean-tags \
263 maintainer-clean-generic distclean-am
264 @echo "This command is intended for maintainers to use;"
265 @echo "it deletes files that may require special tools to rebuild."
266
267maintainer-clean: maintainer-clean-am
268
269.PHONY: mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \
270maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \
271mostlyclean-compile distclean-compile clean-compile \
272maintainer-clean-compile tags mostlyclean-tags distclean-tags \
273clean-tags maintainer-clean-tags distdir info-am info dvi-am dvi check \
274check-am installcheck-am installcheck install-exec-am install-exec \
275install-data-am install-data install-am install uninstall-am uninstall \
276all-redirect all-am all installdirs mostlyclean-generic \
277distclean-generic clean-generic maintainer-clean-generic clean \
278mostlyclean distclean maintainer-clean
279
280
281# Tell versions [3.59,3.63) of GNU make to not export all variables.
282# Otherwise a system limit (for SysV at least) may be exceeded.
283.NOEXPORT:
Note: See TracBrowser for help on using the repository browser.