OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [itcl/] [Makefile.in] - Rev 1773

Go to most recent revision | Compare with Previous | Blame | View Log

#
# This file is the toplevel Makefile for [incr Tcl].  If it has the
# name "Makefile.in" then it is a template for a Makefile; to generate
# the actual Makefile, run "./configure", which is a configuration
# script generated by the "autoconf" program (constructs like
# "@foo@" will get replaced in the actual Makefile.
#
# RCS: $Id: Makefile.in,v 1.1.1.1 2002-01-16 10:24:45 markom Exp $

# Default top-level directories in which to install architecture-
# specific files (exec_prefix) and machine-independent files such
# as scripts (prefix).  The values specified here may be overridden
# at configure-time with the --exec-prefix and --prefix options
# to the "configure" script.

prefix =        @prefix@
exec_prefix =   @exec_prefix@

subdirs =       @subdirs@

# Some versions of make, like SGI's, use the following variable to
# determine which shell to use for executing commands:
SHELL =         /bin/sh

all:
        @for dir in $(subdirs) ; do \
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
                then true; else exit 1; fi \
        done;

test check:
        for dir in $(subdirs) ; do \
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) test); \
                then true; else exit 1; fi \
        done;

static:
        for dir in $(subdirs) ; do \
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
                then true; else exit 1; fi \
        done;

standalone:
        for dir in $(subdirs) ; do \
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
                then true; else exit 1; fi \
        done;

plusplus:
        for dir in $(subdirs) ; do \
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
                then true; else exit 1; fi \
        done;

install:
        for dir in $(subdirs) ; do \
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
                then true; else exit 1; fi \
        done;

install-binaries:
        for dir in $(subdirs) ; do \
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
                then true; else exit 1; fi \
        done;

install-libraries:
        for dir in $(subdirs) ; do \
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
                then true; else exit 1; fi \
        done;

install-info info install-check:

clean:
        for dir in $(subdirs) ; do \
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
                then true; else exit 1; fi \
        done;

distclean:
        rm -f Makefile config.log config.status config.cache
        for dir in $(subdirs) ; do \
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
                then true; else exit 1; fi \
        done;

#
# Target to create a proper Tcl distribution from information in the
# master source directory.  DISTDIR must be defined to indicate where
# to put the distribution.
#

# DO NOT DELETE THIS LINE -- make depend depends on it.

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.