зеркало из https://github.com/mozilla/gecko-dev.git
166 строки
3.8 KiB
Makefile
166 строки
3.8 KiB
Makefile
################################################################
|
|
# Process this file with top-level configure script to produce Makefile
|
|
#
|
|
# Copyright 2000 Clark Cooper
|
|
#
|
|
# This file is part of EXPAT.
|
|
#
|
|
# EXPAT is free software; you can redistribute it and/or modify it
|
|
# under the terms of the License (based on the MIT/X license) contained
|
|
# in the file COPYING that comes with this distribution.
|
|
#
|
|
# EXPAT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
# SOFTWARE OR THE USE OR OTHER DEALINGS IN EXPAT.
|
|
#
|
|
# ---
|
|
# I started using automake, but
|
|
# 1) it seemed like overkill
|
|
# 2) I don't want all the GNU policies
|
|
# 3) I wanted more explicit control over what gets built
|
|
#
|
|
# So I'm doing my Makefile.in files manually. But a fair part is based
|
|
# on what I learned from perusing the Makefile.in's generated by automake,
|
|
# and the automake authors still get my kudos.
|
|
#
|
|
|
|
SHELL = @SHELL@
|
|
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
VPATH = @srcdir@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
|
|
bindir = @bindir@
|
|
sbindir = @sbindir@
|
|
libexecdir = @libexecdir@
|
|
datadir = @datadir@
|
|
sysconfdir = @sysconfdir@
|
|
sharedstatedir = @sharedstatedir@
|
|
localstatedir = @localstatedir@
|
|
libdir = @libdir@
|
|
infodir = @infodir@
|
|
mandir = @mandir@
|
|
includedir = @includedir@
|
|
oldincludedir = /usr/include
|
|
|
|
top_builddir = .
|
|
|
|
|
|
AUTOCONF = autoconf
|
|
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
|
|
NORMAL_INSTALL = :
|
|
PRE_INSTALL = :
|
|
POST_INSTALL = :
|
|
NORMAL_UNINSTALL = :
|
|
PRE_UNINSTALL = :
|
|
POST_UNINSTALL = :
|
|
host_alias = @host_alias@
|
|
host_triplet = @host@
|
|
|
|
CC = @CC@
|
|
|
|
LIBTOOL = @LIBTOOL@
|
|
LN_S = @LN_S@
|
|
PACKAGE = @PACKAGE@
|
|
RANLIB = @RANLIB@
|
|
VERSION = @VERSION@
|
|
|
|
SUBDIRS = lib examples xmlwf
|
|
INSTALLSUBDIRS = lib xmlwf
|
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
CONFIG_HEADERS = config.h
|
|
|
|
DISTDIR = $(PACKAGE)-$(VERSION)
|
|
DISTRIBUTION = $(DISTDIR).tar.gz
|
|
|
|
default: lib xmlwf
|
|
|
|
buildlib: lib
|
|
|
|
all: $(SUBDIRS)
|
|
|
|
Makefile: Makefile.in config.status
|
|
CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) config.status
|
|
|
|
config.status: configure
|
|
@if test -f $@; then \
|
|
$(SHELL) config.status --recheck ; \
|
|
else \
|
|
$(SHELL) configure ; \
|
|
fi
|
|
|
|
configure: configure.in
|
|
$(AUTOCONF)
|
|
|
|
config.h: config.h.in config.status
|
|
CONFIG_FILES= CONFIG_HEADERS=$(CONFIG_HEADERS) \
|
|
$(SHELL) ./config.status
|
|
|
|
$(SUBDIRS):
|
|
cd $@ && $(MAKE)
|
|
|
|
clean:
|
|
for dir in $(SUBDIRS); do \
|
|
(cd $$dir && $(MAKE) clean); \
|
|
done
|
|
rm -f core *~
|
|
|
|
distclean:
|
|
for dir in $(SUBDIRS); do \
|
|
(cd $$dir && $(MAKE) distclean); \
|
|
done
|
|
rm -f config.h config.status config.log config.cache libtool
|
|
rm -f Makefile examples/Makefile xmlwf/Makefile
|
|
|
|
extraclean: distclean
|
|
rm -f aclocal.m4 config.h.in configure
|
|
rm -f conftools/config.guess conftools/config.sub
|
|
rm -f conftools/ltconfig conftools/ltmain.sh
|
|
|
|
maintainer-clean: distclean
|
|
rm -f $(DISTRIBUTION)
|
|
rm -rf $(DISTDIR)
|
|
|
|
distdir: MANIFEST
|
|
test -d $(DISTDIR) && rm -rf $(DISTDIR); \
|
|
mkdir $(DISTDIR); \
|
|
flist=`sed -e "s/[ ]:.*$$//" MANIFEST`; for file in $$flist; do \
|
|
cp -P $$file $(DISTDIR); \
|
|
done
|
|
|
|
check: $(SUBDIRS)
|
|
@echo
|
|
@echo This package does not yet have a regression test.
|
|
@echo
|
|
|
|
$(DISTRIBUTION): distdir
|
|
tar cf - $(DISTDIR) | gzip -9 >$(DISTRIBUTION)
|
|
|
|
dist: $(DISTRIBUTION)
|
|
|
|
install:
|
|
for dir in $(INSTALLSUBDIRS); do \
|
|
(cd $$dir && $(MAKE) install); \
|
|
done
|
|
|
|
uninstall:
|
|
for dir in $(INSTALLSUBDIRS); do \
|
|
(cd $$dir && $(MAKE) uninstall); \
|
|
done
|
|
|
|
.PHONY: buildlib all $(SUBDIRS) \
|
|
clean distclean extraclean maintainer-clean \
|
|
dist distdir \
|
|
install uninstall
|