libtool/Makefile.am

123 lines
4.7 KiB
Makefile
Raw Normal View History

1997-04-02 03:19:30 +08:00
## Process Makefile.am with automake to create Makefile.in. -*-Makefile-*-
1997-04-02 02:29:23 +08:00
## Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
AUTOMAKE_OPTIONS = gnits
1997-04-02 02:49:25 +08:00
SUBDIRS = doc tests
1997-04-02 02:29:23 +08:00
1997-04-02 03:19:30 +08:00
# We need to export these variables when we run ltconfig.
CFLAGS = @CFLAGS@
CPPLAGS = @CPPFLAGS@
1997-04-06 02:48:44 +08:00
aclocal_macros = libtool.m4
1997-04-02 03:18:28 +08:00
1997-09-15 20:31:09 +08:00
EXTRA_DIST = $(aclocal_macros) libtoolize.in ltconfig.in ltmain.in \
1998-03-06 00:23:43 +08:00
libtool.spec libtool.prj
1997-06-14 04:05:46 +08:00
CLEANFILES = libtool libtoolize
MAINTAINERCLEANFILES = ltconfig ltmain.sh
1997-04-02 02:29:23 +08:00
# Files in the demo subdirectory that go in the distribution.
1997-04-02 03:18:28 +08:00
demo_distfiles = demo/Makefile.in demo/Makefile.am demo/README \
demo/acinclude.m4 demo/aclocal.m4 \
demo/configure demo/configure.in demo/foo.c demo/foo.h \
1997-07-20 13:03:16 +08:00
demo/dlmain.c demo/hello.c demo/main.c demo/run.test
1997-04-02 02:29:23 +08:00
# These are required by libtoolize.
pkgdata_SCRIPTS = config.guess config.sub ltconfig
pkgdata_DATA = ltmain.sh
1997-04-02 02:57:49 +08:00
# This macro file should be visible to Automake's aclocal.
1997-04-02 02:29:23 +08:00
aclocaldir = @aclocaldir@
1997-04-02 03:18:28 +08:00
aclocal_DATA = $(aclocal_macros)
1997-04-02 02:29:23 +08:00
# The standalone libtool script, and the libtool distributor.
bin_SCRIPTS = libtool libtoolize
1998-03-09 13:34:02 +08:00
libtool: ltconfig ltmain.sh
1997-07-01 12:38:32 +08:00
CC="$(CC)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" \
1997-07-13 05:39:00 +08:00
LD="$(LD)" LN_S="$(LN_S)" NM="$(NM)" RANLIB="$(RANLIB)" \
1998-04-15 00:29:20 +08:00
$(SHELL) $(srcdir)/ltconfig --srcdir=$(srcdir) $(srcdir)/ltmain.sh
1997-04-02 02:29:23 +08:00
1997-04-02 03:19:30 +08:00
libtoolize: libtoolize.in $(top_builddir)/config.status
1997-04-02 02:29:23 +08:00
CONFIG_FILES=libtoolize CONFIG_HEADERS= $(top_builddir)/config.status
chmod +x libtoolize
1998-03-06 00:23:43 +08:00
# Do line number substitution, as well as PACKAGE and VERSION.
# Line numbering transliterated from a section in autoconf (Autoconf 2.12).
$(srcdir)/ltconfig: ltconfig.in $(top_srcdir)/configure.in
$(AWK) '/@LINENO@/ { printf "%d:", NR } { print }' $(srcdir)/ltconfig.in | \
sed -e 's/@''PACKAGE@/@PACKAGE@/' -e 's/@''VERSION@/@VERSION@/' \
-e '/@LINENO@/s/^\([0-9][0-9]*\):\(.*\)@LINENO@/\2\1/' > ltconfig.T
chmod +x ltconfig.T
mv -f ltconfig.T $@
1997-04-02 02:29:23 +08:00
1998-03-06 00:23:43 +08:00
$(srcdir)/ltmain.sh: ltmain.in $(top_srcdir)/configure.in
sed -e 's/@''PACKAGE@/@PACKAGE@/' -e 's/@''VERSION@/@VERSION@/' $(srcdir)/ltmain.in > ltmain.shT
mv -f ltmain.shT $@
1997-04-02 02:29:23 +08:00
# Distribute the demo subdirectory.
1997-04-02 03:18:28 +08:00
dist-hook: $(demo_distfiles)
1997-04-02 02:29:23 +08:00
mkdir $(distdir)/demo
1997-04-02 02:49:25 +08:00
-chmod 755 $(distdir)/demo
here=`pwd`; distdir=`cd $(distdir) && pwd` \
&& cd $(srcdir)/demo \
1997-04-02 03:21:43 +08:00
&& $(AUTOMAKE) --include-deps --build-dir=$$here/demo --srcdir-name=$(srcdir)/demo --output-dir=$$distdir/demo
1997-04-02 02:29:23 +08:00
@for file in $(demo_distfiles); do \
1997-04-02 03:18:28 +08:00
d=$(srcdir); \
test -f $(distdir)/$$file \
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|| cp -p $$d/$$file $(distdir)/$$file; \
1997-04-02 02:29:23 +08:00
done
1997-04-02 03:18:28 +08:00
# All our rules should depend on these demo files.
all: demo/Makefile.in demo/configure
1997-06-15 11:00:00 +08:00
# We use our own libtool.m4.
1997-11-07 00:59:31 +08:00
$(srcdir)/acinclude.m4: libtool.m4
1997-06-15 11:00:00 +08:00
rm -f $(srcdir)/acinclude.m4
1997-11-07 00:59:31 +08:00
cd $(srcdir) && $(LN_S) libtool.m4 acinclude.m4
$(srcdir)/demo/acinclude.m4: libtool.m4
rm -f $(srcdir)/demo/acinclude.m4
cd $(srcdir)/demo && $(LN_S) ../libtool.m4 acinclude.m4
1997-06-15 11:00:00 +08:00
1997-04-02 03:18:28 +08:00
# Rules for rebuilding some of the demo source files.
$(srcdir)/demo/Makefile.in: demo/Makefile.am demo/configure.in demo/aclocal.m4
1997-04-02 03:21:43 +08:00
cd $(srcdir)/demo && $(AUTOMAKE)
1997-04-02 03:18:28 +08:00
$(srcdir)/demo/configure: demo/configure.in demo/aclocal.m4
1997-06-15 11:00:00 +08:00
cd $(srcdir)/demo && $(AUTOCONF)
1997-04-02 03:18:28 +08:00
$(srcdir)/demo/aclocal.m4: demo/configure.in demo/acinclude.m4
1997-04-02 03:21:43 +08:00
cd $(srcdir)/demo && $(ACLOCAL)
1997-11-28 00:57:00 +08:00
1997-11-29 01:23:28 +08:00
######################################################################
1997-11-28 00:57:00 +08:00
# These commands really help my life as a maintainer who uses PRCS.
# Feel free to copy them to your own project. I just run a
# maintainer-checkin whenever I feel like it, then I run a maintainer-release
# after changing the project major version number in my project file.
#
1997-11-28 00:57:00 +08:00
# This works because of the special `$Format: ...$' string I have in my
1997-11-28 00:57:00 +08:00
# `configure.in'.
PRCS = prcs
1997-11-28 00:57:00 +08:00
.PHONY: maintainer-checkin maintainer-check-versions maintainer-release
1997-11-28 00:57:00 +08:00
maintainer-checkin:
1997-12-01 15:59:19 +08:00
cd $(top_srcdir) && $(PRCS) checkin -f $(PACKAGE)
1997-11-28 00:57:00 +08:00
1997-11-28 00:57:00 +08:00
maintainer-check-versions:
@newver=`grep '^(Project-Version[ ]' $(srcdir)/$(PACKAGE).prj | \
1997-11-28 00:57:00 +08:00
sed 's/^.*[ ]\+\([^ ]\+\)[ ]\+[0-9]\+).*$$/\1/'`; \
if test "X$$newver" = "X$(VERSION)"; then \
1997-11-28 00:57:00 +08:00
echo "Project-Version major \`$$newver' is the same as the released version." 1>&2; \
echo "You must change Project-Version in $(top_srcdir)/$(PACKAGE).prj before releasing." 1>&2; \
1997-11-28 00:57:00 +08:00
exit 1; \
1997-11-28 00:57:00 +08:00
fi
maintainer-release: maintainer-check-versions distcheck
1997-11-30 05:03:42 +08:00
cd $(top_srcdir) && $(PRCS) checkin -f $(PACKAGE)
cd $(top_srcdir) && $(PRCS) rekey -f $(PACKAGE) configure.in libtool.spec
1997-12-02 02:36:19 +08:00
@echo "============================="; \
1997-11-28 00:57:00 +08:00
echo "Congratulations! $(PACKAGE)-$(VERSION) is now complete."; \
echo; \
1997-11-29 01:23:28 +08:00
echo "Distribute \`$(PACKAGE)-$(VERSION).tar.gz' to the masses, and don't forget"; \
echo "any other details you need to complete this release."; \
1997-11-28 00:57:00 +08:00
echo "============================="