source: trunk/gsdl/packages/yaz/Makefile.in@ 1865

Last change on this file since 1865 was 1865, checked in by jrm21, 23 years ago

removed (some of the) re-inserted deleted stuff from the CORBA merge.

  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1# 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# Modified for the NZDL Greenstone project. The original is still in
15# Makefile.am, for processing with automake.
16#######
17
18SHELL = @SHELL@
19
20srcdir = @srcdir@
21top_srcdir = @top_srcdir@
22VPATH = @srcdir@
23prefix = @prefix@
24exec_prefix = @exec_prefix@
25
26bindir = @bindir@
27sbindir = @sbindir@
28libexecdir = @libexecdir@
29datadir = @datadir@
30sysconfdir = @sysconfdir@
31sharedstatedir = @sharedstatedir@
32localstatedir = @localstatedir@
33libdir = @libdir@
34infodir = @infodir@
35mandir = @mandir@
36includedir = @includedir@
37oldincludedir = /usr/include
38
39DESTDIR =
40
41pkgdatadir = $(datadir)/@PACKAGE@
42pkglibdir = $(libdir)/@PACKAGE@
43pkgincludedir = $(includedir)/@PACKAGE@
44
45top_builddir = .
46
47ASNMODULE = @ASNMODULE@
48CC = @CC@
49CPP = @CPP@
50ILLLIB = @ILLLIB@
51ILLMODULE = @ILLMODULE@
52MAKEINFO = @MAKEINFO@
53PACKAGE = @PACKAGE@
54RANLIB = @RANLIB@
55SUBDIRS_VAR = @SUBDIRS_VAR@
56VERSION = @VERSION@
57have_sgml2html = @have_sgml2html@
58have_sgml2latex = @have_sgml2latex@
59have_sgml2txt = @have_sgml2txt@
60
61DIST_SUBDIRS = util odr z39.50 asn ill zutil comstack ccl tab retrieval server lib include client ztest doc
62
63SUBDIRS = @SUBDIRS_VAR@
64
65SPEC_FILE = $(PACKAGE).spec
66EXTRA_DIST = $(SPEC_FILE) README LICENSE CHANGELOG TODO windows.txt
67ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
68mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
69CONFIG_CLEAN_FILES = config.status config.cache config.log
70
71DIST_COMMON = Makefile.am Makefile.in TODO aclocal.m4 configure \
72configure.in install-sh missing mkinstalldirs
73
74
75DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
76
77
78
79all: all-recursive
80# make install should not do anything for greenstone (I hope...)
81install:
82clean: clean-recursive
83distclean: distclean-recursive
84 -rm -f Makefile $(CONFIG_CLEAN_FILES)
85
86
87# Don't want Makefile.in automatically re-generated from Makefile.am...
88#
89# .SUFFIXES:
90# $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
91# cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps Makefile
92#
93# Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
94# cd $(top_builddir) \
95# && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
96#
97# $(ACLOCAL_M4): configure.in
98# cd $(srcdir) && $(ACLOCAL)
99#
100# config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
101# $(SHELL) ./config.status --recheck
102# $(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
103# cd $(srcdir) && $(AUTOCONF)
104
105# This directory's subdirectories are mostly independent; you can cd
106# into them and run `make' without going through this Makefile.
107# To change the values of `make' variables: instead of editing Makefiles,
108# (1) if the variable is set in `config.status', edit `config.status'
109# (which will cause the Makefiles to be regenerated when you run `make');
110# (2) otherwise, pass the desired values on the `make' command line.
111
112# @SET_MAKE@
113
114clean-recursive all-recursive:
115 set fnord $(MAKEFLAGS); amf=$$2; \
116 target=`echo $@ | sed s/-recursive//`; \
117 list='$(SUBDIRS)'; for subdir in $$list; do \
118 (cd $$subdir && $(MAKE) $$target) \
119 || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
120 done;
121# echo "Making $$target in $$subdir";
122
123distclean-recursive:
124 for subdir in $(SUBDIRS); do \
125 (cd $$subdir && test -e Makefile && $(MAKE) distclean); done
126
127distdir = $(PACKAGE)-$(VERSION)
128top_distdir = $(distdir)
129
130
131.PHONY: all install clean distclean \
132 all-recursive distclean-recursive clean-recursive \
133 distdir top_distdir yaz-config dist-hook rpm
134
135yaz-config:
136 @echo "#!/bin/sh" >yaz-config
137 @echo "# YAZ settings for developers" >>yaz-config
138 @echo "YAZBIN=\"`pwd`/bin\"" >>yaz-config
139 @echo "YAZTAB=\"`pwd`/tab\"" >>yaz-config
140 @echo "YAZLIB=\"-L`pwd`/lib -lyaz @LIBS@\"" >>yaz-config
141 @echo "YAZINC=\"-I`pwd`/include\"" >>yaz-config
142 chmod +x yaz-config
143
144dist-hook:
145 mkdir $(distdir)/win
146 -cp $(srcdir)/win/* $(distdir)/win
147
148rpm: $(PACKAGE)-$(VERSION).tar.gz
149 cp $(PACKAGE)-$(VERSION).tar.gz /usr/src/redhat/SOURCES
150 rpm -ba $(SPEC_FILE)
151
152# Tell versions [3.59,3.63) of GNU make to not export all variables.
153# Otherwise a system limit (for SysV at least) may be exceeded.
154.NOEXPORT:
Note: See TracBrowser for help on using the repository browser.