Skip to Content.
Sympa Menu

freetds - HPUX and HP-Make Fixed...

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: Emilio M.Recio <n2wog AT usa.net>
  • To: "TDS Development Group" <freetds AT franklin.oit.unc.edu>
  • Subject: HPUX and HP-Make Fixed...
  • Date: 30 Apr 2001 16:46:25 EDT

Hello all,

Attached you will find two make filed from ctlib, and dblib. The offending
commands were patsubst when run against HPUX make. I *think* i have fixed the
problem by guessing what this patsubst is trying to do: grab all of the
freetds/tds/*.c expanding the full selection, and replacing the .c with .lo.
It puts all of those .lo's into a variable and adds those lo's to the ctlib.la
file, and dblib.la file.

Hope this helps someone somewhere... search for the word ELMO in the make
files...


Best Regards,
E.M. Recio

--

Inherent in every intention and desire is the mechanics for its fulfillment...
intention and desire in the field of pure potentiality have infinite
organizing power. And when we introduce an intention in the fertile ground of
pure potentiality, we put this infinite organizing power to work for us.

____________________________________________________________________
Get free email and a permanent address at http://www.amexmail.com/?A=1
# Generated automatically from Makefile.in by configure.
# Makefile.in generated automatically by automake 1.3 from Makefile.am

# Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.


SHELL = /bin/sh

srcdir = .
top_srcdir = ../..
prefix = /usr/local/freetds
exec_prefix = ${prefix}

bindir = ${exec_prefix}/bin
sbindir = ${exec_prefix}/sbin
libexecdir = ${exec_prefix}/libexec
datadir = ${prefix}/share
sysconfdir = ${prefix}/etc
sharedstatedir = ${prefix}/com
localstatedir = ${prefix}/var
libdir = ${exec_prefix}/lib
infodir = ${prefix}/info
mandir = ${prefix}/man
includedir = ${prefix}/include
oldincludedir = /usr/include

DISTDIR =

pkgdatadir = $(datadir)/freetds
pkglibdir = $(libdir)/freetds
pkgincludedir = $(includedir)/freetds

top_builddir = ../..

ACLOCAL = /users/ie1njsh/src/freetds-0.51/missing aclocal
AUTOCONF = /users/ie1njsh/src/freetds-0.51/missing autoconf
AUTOMAKE = /users/ie1njsh/src/freetds-0.51/missing automake
AUTOHEADER = /users/ie1njsh/src/freetds-0.51/missing autoheader

INSTALL = /users/ie1njsh/bin/./install -c
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL_PROGRAM}
transform = s,x,x,

NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
host_alias = hppa1.1-hp-hpux11.00
host_triplet = hppa1.1-hp-hpux11.00
AS = @AS@
CC = cc
CPP = cc -E
DLLTOOL = @DLLTOOL@
LD = /usr/bin/ld
LIBTOOL = $(SHELL) $(top_builddir)/libtool
LN_S = ln -s
MAKEINFO = /users/ie1njsh/src/freetds-0.51/missing makeinfo
NETWORK_LIBS =
NM = /usr/bin/nm -p
OBJDUMP = @OBJDUMP@
PACKAGE = freetds
RANLIB = ranlib
VERSION = 0.51

SUBDIRS = unittests

TDSDIR = ../tds
TDSSOURCES = mem.c token.c util.c login.c read.c write.c convert.c
numeric.c
lib_LTLIBRARIES = libct.la
libct_la_SOURCES= ct.c cs.c blk.c ctutil.c
# ELMO UPDATE
libct_la_LIBADD = ../tds/convert.lo ../tds/login.lo ../tds/mem.lo
../tds/numeric.lo ../tds/read.lo ../tds/token.lo ../tds/util.lo
../tds/write.lo
#
#libct_la_LIBADD = $(patsubst %, $(TDSDIR)/%, \
# $(patsubst %.c, %.lo, $(TDSSOURCES)))
INCLUDES = -I$(top_srcdir)/include
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_CLEAN_FILES =
LTLIBRARIES = $(lib_LTLIBRARIES)


DEFS = -DPACKAGE=\"freetds\" -DVERSION=\"0.51\" -DSTDC_HEADERS=1
-DWORDS_BIGENDIAN=1 -I. -I$(srcdir)
CPPFLAGS =
LDFLAGS =
LIBS =
libct_la_LDFLAGS =
# ELMO UPDATE
libct_la_DEPENDENCIES = ../tds/convert.lo ../tds/login.lo
../tds/mem.lo ../tds/numeric.lo ../tds/read.lo ../tds/token.lo
../tds/util.lo ../tds/write.lo
#libct_la_DEPENDENCIES = $(patsubst %, $(TDSDIR)/%, $(patsubst %.c, \
#%.lo, $(TDSSOURCES)))
libct_la_OBJECTS = ct.lo cs.lo blk.lo ctutil.lo
CFLAGS = -g -DTDS70 -DMSDBLIB -DDBMFIX
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS)
$(CFLAGS)
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
DIST_COMMON = Makefile.am Makefile.in


DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)

TAR = tar
GZIP = --best
SOURCES = $(libct_la_SOURCES)
OBJECTS = $(libct_la_OBJECTS)

all: all-recursive all-am

.SUFFIXES:
.SUFFIXES: .S .c .lo .o .s
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps
src/ctlib/Makefile

Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL)
./config.status


mostlyclean-libLTLIBRARIES:

clean-libLTLIBRARIES:
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)

distclean-libLTLIBRARIES:

maintainer-clean-libLTLIBRARIES:

install-libLTLIBRARIES: $(lib_LTLIBRARIES)
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(libdir)
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
if test -f $$p; then \
echo "$(LIBTOOL) --mode=install $(INSTALL_DATA) $$p
$(DESTDIR)$(libdir)/$$p"; \
$(LIBTOOL) --mode=install $(INSTALL_DATA) $$p
$(DESTDIR)$(libdir)/$$p; \
else :; fi; \
done

uninstall-libLTLIBRARIES:
@$(NORMAL_UNINSTALL)
list='$(lib_LTLIBRARIES)'; for p in $$list; do \
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
done

.c.o:
$(COMPILE) -c $<

.s.o:
$(COMPILE) -c $<

.S.o:
$(COMPILE) -c $<

mostlyclean-compile:
-rm -f *.o core *.core

clean-compile:

distclean-compile:
-rm -f *.tab.c

maintainer-clean-compile:

.c.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<

.s.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<

.S.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<

mostlyclean-libtool:
-rm -f *.lo

clean-libtool:
-rm -rf .libs _libs

distclean-libtool:

maintainer-clean-libtool:

libct.la: $(libct_la_OBJECTS) $(libct_la_DEPENDENCIES)
$(LINK) -rpath $(libdir) $(libct_la_LDFLAGS) $(libct_la_OBJECTS)
$(libct_la_LIBADD) $(LIBS)

# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.



all-recursive install-data-recursive install-exec-recursive \
installdirs-recursive install-recursive uninstall-recursive \
check-recursive installcheck-recursive info-recursive dvi-recursive:
@set fnord $(MAKEFLAGS); amf=$$2; \
list='$(SUBDIRS)'; for subdir in $$list; do \
target=`echo $@ | sed s/-recursive//`; \
echo "Making $$target in $$subdir"; \
(cd $$subdir && $(MAKE) $$target) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;
\
done && test -z "$$fail"

mostlyclean-recursive clean-recursive distclean-recursive \
maintainer-clean-recursive:
@set fnord $(MAKEFLAGS); amf=$$2; \
rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
rev="$$subdir $$rev"; \
done; \
for subdir in $$rev; do \
target=`echo $@ | sed s/-recursive//`; \
echo "Making $$target in $$subdir"; \
(cd $$subdir && $(MAKE) $$target) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;
\
done && test -z "$$fail"
tags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
(cd $$subdir && $(MAKE) tags); \
done

tags: TAGS

ID: $(HEADERS) $(SOURCES) $(LISP)
here=`pwd` && cd $(srcdir) \
&& mkid -f$$here/ID $(SOURCES) $(HEADERS) $(LISP)

TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
done; \
list='$(SOURCES) $(HEADERS)'; \
unique=`for i in $$list; do echo $$i; done | \
awk ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
|| (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o
$$here/TAGS)

mostlyclean-tags:

clean-tags:

distclean-tags:
-rm -f TAGS ID

maintainer-clean-tags:

distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)

subdir = src/ctlib

distdir: $(DISTFILES)
@for file in $(DISTFILES); do \
d=$(srcdir); \
test -f $(distdir)/$$file \
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|| cp -p $$d/$$file $(distdir)/$$file; \
done
for subdir in $(SUBDIRS); do \
test -d $(distdir)/$$subdir \
|| mkdir $(distdir)/$$subdir \
|| exit 1; \
chmod 777 $(distdir)/$$subdir; \
(cd $$subdir && $(MAKE) top_distdir=../$(top_distdir)
distdir=../$(distdir)/$$subdir distdir) \
|| exit 1; \
done
blk.lo blk.o: blk.c ../../include/bkpublic.h ../../include/cspublic.h \
../../include/tds.h ../../include/tdsver.h
cs.lo cs.o: cs.c ../../include/cspublic.h ../../include/tds.h \
../../include/tdsver.h
ct.lo ct.o: ct.c ../../include/ctpublic.h ../../include/cspublic.h \
../../include/tds.h ../../include/tdsver.h \
../../include/ctlib.h
ctutil.lo ctutil.o: ctutil.c ../../include/ctlib.h ../../include/tds.h \
../../include/tdsver.h ../../include/cspublic.h

info: info-recursive
dvi: dvi-recursive
check: all-am
$(MAKE) check-recursive
installcheck: installcheck-recursive
all-am: Makefile $(LTLIBRARIES)

install-exec-am: install-libLTLIBRARIES

uninstall-am: uninstall-libLTLIBRARIES

install-exec: install-exec-recursive install-exec-am
@$(NORMAL_INSTALL)

install-data: install-data-recursive
@$(NORMAL_INSTALL)

install: install-recursive install-exec-am
@:

uninstall: uninstall-recursive uninstall-am

install-strip:
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s'
INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
installdirs: installdirs-recursive
$(mkinstalldirs) $(DATADIR)$(libdir)


mostlyclean-generic:
-test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)

clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)

distclean-generic:
-rm -f Makefile $(DISTCLEANFILES)
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)

maintainer-clean-generic:
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
mostlyclean-am: mostlyclean-libLTLIBRARIES mostlyclean-compile \
mostlyclean-libtool mostlyclean-tags \
mostlyclean-generic

clean-am: clean-libLTLIBRARIES clean-compile clean-libtool clean-tags \
clean-generic mostlyclean-am

distclean-am: distclean-libLTLIBRARIES distclean-compile \
distclean-libtool distclean-tags distclean-generic \
clean-am

maintainer-clean-am: maintainer-clean-libLTLIBRARIES \
maintainer-clean-compile maintainer-clean-libtool \
maintainer-clean-tags maintainer-clean-generic \
distclean-am

mostlyclean: mostlyclean-recursive mostlyclean-am

clean: clean-recursive clean-am

distclean: distclean-recursive distclean-am
-rm -f config.status
-rm -f libtool

maintainer-clean: maintainer-clean-recursive maintainer-clean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."

.PHONY: mostlyclean-libLTLIBRARIES distclean-libLTLIBRARIES \
clean-libLTLIBRARIES maintainer-clean-libLTLIBRARIES \
uninstall-libLTLIBRARIES install-libLTLIBRARIES mostlyclean-compile \
distclean-compile clean-compile maintainer-clean-compile \
mostlyclean-libtool distclean-libtool clean-libtool \
maintainer-clean-libtool install-data-recursive \
uninstall-data-recursive install-exec-recursive \
uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
all-recursive check-recursive installcheck-recursive info-recursive \
dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
distclean-tags clean-tags maintainer-clean-tags distdir info dvi \
installcheck all-am install-exec-am uninstall-am install-exec \
install-data install uninstall all installdirs mostlyclean-generic \
distclean-generic clean-generic maintainer-clean-generic clean \
mostlyclean distclean maintainer-clean


# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:# Generated automatically from Makefile.in by configure.
# Makefile.in generated automatically by automake 1.3 from Makefile.am

# Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.


SHELL = /bin/sh

srcdir = .
top_srcdir = ../..
prefix = /usr/local/freetds
exec_prefix = ${prefix}

bindir = ${exec_prefix}/bin
sbindir = ${exec_prefix}/sbin
libexecdir = ${exec_prefix}/libexec
datadir = ${prefix}/share
sysconfdir = ${prefix}/etc
sharedstatedir = ${prefix}/com
localstatedir = ${prefix}/var
libdir = ${exec_prefix}/lib
infodir = ${prefix}/info
mandir = ${prefix}/man
includedir = ${prefix}/include
oldincludedir = /usr/include

DISTDIR =

pkgdatadir = $(datadir)/freetds
pkglibdir = $(libdir)/freetds
pkgincludedir = $(includedir)/freetds

top_builddir = ../..

ACLOCAL = /users/ie1njsh/src/freetds-0.51/missing aclocal
AUTOCONF = /users/ie1njsh/src/freetds-0.51/missing autoconf
AUTOMAKE = /users/ie1njsh/src/freetds-0.51/missing automake
AUTOHEADER = /users/ie1njsh/src/freetds-0.51/missing autoheader

INSTALL = /users/ie1njsh/bin/./install -c
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL_PROGRAM}
transform = s,x,x,

NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
host_alias = hppa1.1-hp-hpux11.00
host_triplet = hppa1.1-hp-hpux11.00
AS = @AS@
CC = cc
CPP = cc -E
DLLTOOL = @DLLTOOL@
LD = /usr/bin/ld
LIBTOOL = $(SHELL) $(top_builddir)/libtool
LN_S = ln -s
MAKEINFO = /users/ie1njsh/src/freetds-0.51/missing makeinfo
NETWORK_LIBS =
NM = /usr/bin/nm -p
OBJDUMP = @OBJDUMP@
PACKAGE = freetds
RANLIB = ranlib
VERSION = 0.51

SUBDIRS = unittests

TDSDIR = ../tds
TDSSOURCES = mem.c token.c util.c login.c read.c write.c convert.c
numeric.c
lib_LTLIBRARIES = libsybdb.la
libsybdb_la_SOURCES= dblib.c dbutil.c rpc.c bcp.c xact.c
# Elmo Mods
libsybdb_la_LIBADD = ../tds/convert.lo ../tds/login.lo ../tds/mem.lo
../tds/numeric.lo ../tds/read.lo ../tds/token.lo ../tds/util.lo
../tds/write.lo
#
#libsybdb_la_LIBADD= $(patsubst %, $(TDSDIR)/%, \
# $(patsubst %.c, %.lo, $(TDSSOURCES)))
INCLUDES = -I$(top_srcdir)/include
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_CLEAN_FILES =
LTLIBRARIES = $(lib_LTLIBRARIES)


DEFS = -DPACKAGE=\"freetds\" -DVERSION=\"0.51\" -DSTDC_HEADERS=1
-DWORDS_BIGENDIAN=1 -I. -I$(srcdir)
CPPFLAGS =
LDFLAGS =
LIBS =
libsybdb_la_LDFLAGS =
# ELMO MODS
libsybdb_la_DEPENDENCIES = ../tds/convert.lo ../tds/login.lo
../tds/mem.lo ../tds/numeric.lo ../tds/read.lo ../tds/token.lo
../tds/util.lo ../tds/write.lo
#libsybdb_la_DEPENDENCIES = $(patsubst %, $(TDSDIR)/%, $(patsubst %.c, \
#%.lo, $(TDSSOURCES)))
libsybdb_la_OBJECTS = dblib.lo dbutil.lo rpc.lo bcp.lo xact.lo
CFLAGS = -g -DTDS70 -DMSDBLIB -DDBMFIX
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS)
$(CFLAGS)
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
DIST_COMMON = Makefile.am Makefile.in


DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)

TAR = tar
GZIP = --best
SOURCES = $(libsybdb_la_SOURCES)
OBJECTS = $(libsybdb_la_OBJECTS)

all: all-recursive all-am

.SUFFIXES:
.SUFFIXES: .S .c .lo .o .s
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps
src/dblib/Makefile

Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL)
./config.status


mostlyclean-libLTLIBRARIES:

clean-libLTLIBRARIES:
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)

distclean-libLTLIBRARIES:

maintainer-clean-libLTLIBRARIES:

install-libLTLIBRARIES: $(lib_LTLIBRARIES)
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(libdir)
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
if test -f $$p; then \
echo "$(LIBTOOL) --mode=install $(INSTALL_DATA) $$p
$(DESTDIR)$(libdir)/$$p"; \
$(LIBTOOL) --mode=install $(INSTALL_DATA) $$p
$(DESTDIR)$(libdir)/$$p; \
else :; fi; \
done

uninstall-libLTLIBRARIES:
@$(NORMAL_UNINSTALL)
list='$(lib_LTLIBRARIES)'; for p in $$list; do \
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
done

.c.o:
$(COMPILE) -c $<

.s.o:
$(COMPILE) -c $<

.S.o:
$(COMPILE) -c $<

mostlyclean-compile:
-rm -f *.o core *.core

clean-compile:

distclean-compile:
-rm -f *.tab.c

maintainer-clean-compile:

.c.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<

.s.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<

.S.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<

mostlyclean-libtool:
-rm -f *.lo

clean-libtool:
-rm -rf .libs _libs

distclean-libtool:

maintainer-clean-libtool:

libsybdb.la: $(libsybdb_la_OBJECTS) $(libsybdb_la_DEPENDENCIES)
$(LINK) -rpath $(libdir) $(libsybdb_la_LDFLAGS)
$(libsybdb_la_OBJECTS) $(libsybdb_la_LIBADD) $(LIBS)

# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.



all-recursive install-data-recursive install-exec-recursive \
installdirs-recursive install-recursive uninstall-recursive \
check-recursive installcheck-recursive info-recursive dvi-recursive:
@set fnord $(MAKEFLAGS); amf=$$2; \
list='$(SUBDIRS)'; for subdir in $$list; do \
target=`echo $@ | sed s/-recursive//`; \
echo "Making $$target in $$subdir"; \
(cd $$subdir && $(MAKE) $$target) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;
\
done && test -z "$$fail"

mostlyclean-recursive clean-recursive distclean-recursive \
maintainer-clean-recursive:
@set fnord $(MAKEFLAGS); amf=$$2; \
rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
rev="$$subdir $$rev"; \
done; \
for subdir in $$rev; do \
target=`echo $@ | sed s/-recursive//`; \
echo "Making $$target in $$subdir"; \
(cd $$subdir && $(MAKE) $$target) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;
\
done && test -z "$$fail"
tags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
(cd $$subdir && $(MAKE) tags); \
done

tags: TAGS

ID: $(HEADERS) $(SOURCES) $(LISP)
here=`pwd` && cd $(srcdir) \
&& mkid -f$$here/ID $(SOURCES) $(HEADERS) $(LISP)

TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
done; \
list='$(SOURCES) $(HEADERS)'; \
unique=`for i in $$list; do echo $$i; done | \
awk ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
|| (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o
$$here/TAGS)

mostlyclean-tags:

clean-tags:

distclean-tags:
-rm -f TAGS ID

maintainer-clean-tags:

distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)

subdir = src/dblib

distdir: $(DISTFILES)
@for file in $(DISTFILES); do \
d=$(srcdir); \
test -f $(distdir)/$$file \
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|| cp -p $$d/$$file $(distdir)/$$file; \
done
for subdir in $(SUBDIRS); do \
test -d $(distdir)/$$subdir \
|| mkdir $(distdir)/$$subdir \
|| exit 1; \
chmod 777 $(distdir)/$$subdir; \
(cd $$subdir && $(MAKE) top_distdir=../$(top_distdir)
distdir=../$(distdir)/$$subdir distdir) \
|| exit 1; \
done
bcp.lo bcp.o: bcp.c ../../include/tdsutil.h ../../include/tds.h \
../../include/tdsver.h ../../include/sybfront.h \
../../include/sybdb.h ../../include/dblib.h
convert.lo convert.o: ../tds/convert.c ../../include/tdsutil.h \
../../include/tds.h ../../include/tdsver.h \
../../include/tdsconvert.h
dblib.lo dblib.o: dblib.c ../../include/tdsutil.h ../../include/tds.h \
../../include/tdsver.h ../../include/sybfront.h \
../../include/sybdb.h ../../include/dblib.h \
../../include/tdsconvert.h
dbutil.lo dbutil.o: dbutil.c ../../include/sybdb.h ../../include/tds.h \
../../include/tdsver.h ../../include/dblib.h
login.lo login.o: ../tds/login.c ../../include/tds.h \
../../include/tdsver.h ../../include/tdsutil.h
mem.lo mem.o: ../tds/mem.c ../../include/tds.h ../../include/tdsver.h \
../../include/tdsutil.h
rpc.lo rpc.o: rpc.c ../../include/tdsutil.h ../../include/tds.h \
../../include/tdsver.h ../../include/sybfront.h \
../../include/sybdb.h ../../include/dblib.h
token.lo token.o: ../tds/token.c ../../include/tds.h \
../../include/tdsver.h ../../include/tdsutil.h
xact.lo xact.o: xact.c ../../include/tdsutil.h ../../include/tds.h \
../../include/tdsver.h ../../include/sybfront.h \
../../include/sybdb.h ../../include/dblib.h

info: info-recursive
dvi: dvi-recursive
check: all-am
$(MAKE) check-recursive
installcheck: installcheck-recursive
all-am: Makefile $(LTLIBRARIES)

install-exec-am: install-libLTLIBRARIES

uninstall-am: uninstall-libLTLIBRARIES

install-exec: install-exec-recursive install-exec-am
@$(NORMAL_INSTALL)

install-data: install-data-recursive
@$(NORMAL_INSTALL)

install: install-recursive install-exec-am
@:

uninstall: uninstall-recursive uninstall-am

install-strip:
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s'
INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
installdirs: installdirs-recursive
$(mkinstalldirs) $(DATADIR)$(libdir)


mostlyclean-generic:
-test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)

clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)

distclean-generic:
-rm -f Makefile $(DISTCLEANFILES)
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)

maintainer-clean-generic:
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
mostlyclean-am: mostlyclean-libLTLIBRARIES mostlyclean-compile \
mostlyclean-libtool mostlyclean-tags \
mostlyclean-generic

clean-am: clean-libLTLIBRARIES clean-compile clean-libtool clean-tags \
clean-generic mostlyclean-am

distclean-am: distclean-libLTLIBRARIES distclean-compile \
distclean-libtool distclean-tags distclean-generic \
clean-am

maintainer-clean-am: maintainer-clean-libLTLIBRARIES \
maintainer-clean-compile maintainer-clean-libtool \
maintainer-clean-tags maintainer-clean-generic \
distclean-am

mostlyclean: mostlyclean-recursive mostlyclean-am

clean: clean-recursive clean-am

distclean: distclean-recursive distclean-am
-rm -f config.status
-rm -f libtool

maintainer-clean: maintainer-clean-recursive maintainer-clean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."

.PHONY: mostlyclean-libLTLIBRARIES distclean-libLTLIBRARIES \
clean-libLTLIBRARIES maintainer-clean-libLTLIBRARIES \
uninstall-libLTLIBRARIES install-libLTLIBRARIES mostlyclean-compile \
distclean-compile clean-compile maintainer-clean-compile \
mostlyclean-libtool distclean-libtool clean-libtool \
maintainer-clean-libtool install-data-recursive \
uninstall-data-recursive install-exec-recursive \
uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
all-recursive check-recursive installcheck-recursive info-recursive \
dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
distclean-tags clean-tags maintainer-clean-tags distdir info dvi \
installcheck all-am install-exec-am uninstall-am install-exec \
install-data install uninstall all installdirs mostlyclean-generic \
distclean-generic clean-generic maintainer-clean-generic clean \
mostlyclean distclean maintainer-clean


# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:


  • HPUX and HP-Make Fixed..., Emilio M . Recio, 04/30/2001

Archive powered by MHonArc 2.6.24.

Top of Page