# This entire file is CYGNUS LOCAL.
|
# This entire file is CYGNUS LOCAL.
|
# Minimal top-level Makefile. Just pass everything to the $(CONFIGDIR)
|
# Minimal top-level Makefile. Just pass everything to the $(CONFIGDIR)
|
# subdir.
|
# subdir.
|
# From tcl/Makefile.in, by Tom Tromey
|
# From tcl/Makefile.in, by Tom Tromey
|
|
|
CONFIGDIR=@CONFIGDIR@
|
CONFIGDIR=@CONFIGDIR@
|
|
|
VPATH = @srcdir@
|
VPATH = @srcdir@
|
SHELL = @SHELL@
|
SHELL = @SHELL@
|
SRC_DIR = @srcdir@
|
SRC_DIR = @srcdir@
|
|
|
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
|
|
@SET_MAKE@
|
@SET_MAKE@
|
|
|
all install test install-binaries install-libraries install-minimal:
|
all install test install-binaries install-libraries install-minimal:
|
@cd $(CONFIGDIR) && $(MAKE) $@
|
@cd $(CONFIGDIR) && $(MAKE) $@
|
|
|
mostlyclean-recursive clean-recursive distclean-recursive \
|
mostlyclean-recursive clean-recursive distclean-recursive \
|
maintainer-clean-recursive:
|
maintainer-clean-recursive:
|
@cd $(CONFIGDIR) && $(MAKE) `echo $@ | sed 's/-recursive//'`
|
@cd $(CONFIGDIR) && $(MAKE) `echo $@ | sed 's/-recursive//'`
|
|
|
configure:
|
configure:
|
cd $(SRC_DIR) && autoconf
|
cd $(SRC_DIR) && autoconf
|
|
|
mostlyclean: mostlyclean-recursive
|
mostlyclean: mostlyclean-recursive
|
|
|
clean: clean-recursive
|
clean: clean-recursive
|
|
|
distclean-local:
|
distclean-local:
|
rm -f Makefile config.status config.cache config.log
|
rm -f Makefile config.status config.cache config.log
|
|
|
distclean: distclean-recursive distclean-local
|
distclean: distclean-recursive distclean-local
|
|
|
maintainer-clean: distclean-local maintainer-clean-recursive
|
maintainer-clean: distclean-local maintainer-clean-recursive
|
|
|
check:
|
check:
|
cd $(CONFIGDIR) && $(MAKE) tests
|
cd $(CONFIGDIR) && $(MAKE) tests
|
|
|
install-info info installcheck:
|
install-info info installcheck:
|
|
|
Makefile: Makefile.in config.status
|
Makefile: Makefile.in config.status
|
CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
|
CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
config.status: configure
|
config.status: configure
|
$(SHELL) config.status --recheck
|
$(SHELL) config.status --recheck
|
|
|