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

Subversion Repositories or1k

[/] [or1k/] [tags/] [start/] [insight/] [itcl/] [Makefile.in] - Blame information for rev 1782

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

Line No. Rev Author Line
1 578 markom
#
2
# This file is the toplevel Makefile for [incr Tcl].  If it has the
3
# name "Makefile.in" then it is a template for a Makefile; to generate
4
# the actual Makefile, run "./configure", which is a configuration
5
# script generated by the "autoconf" program (constructs like
6
# "@foo@" will get replaced in the actual Makefile.
7
#
8
# RCS: $Id: Makefile.in,v 1.1.1.1 2002-01-16 10:24:45 markom Exp $
9
 
10
# Default top-level directories in which to install architecture-
11
# specific files (exec_prefix) and machine-independent files such
12
# as scripts (prefix).  The values specified here may be overridden
13
# at configure-time with the --exec-prefix and --prefix options
14
# to the "configure" script.
15
 
16
prefix =        @prefix@
17
exec_prefix =   @exec_prefix@
18
 
19
subdirs =       @subdirs@
20
 
21
# Some versions of make, like SGI's, use the following variable to
22
# determine which shell to use for executing commands:
23
SHELL =         /bin/sh
24
 
25
all:
26
        @for dir in $(subdirs) ; do \
27
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
28
                then true; else exit 1; fi \
29
        done;
30
 
31
test check:
32
        for dir in $(subdirs) ; do \
33
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) test); \
34
                then true; else exit 1; fi \
35
        done;
36
 
37
static:
38
        for dir in $(subdirs) ; do \
39
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
40
                then true; else exit 1; fi \
41
        done;
42
 
43
standalone:
44
        for dir in $(subdirs) ; do \
45
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
46
                then true; else exit 1; fi \
47
        done;
48
 
49
plusplus:
50
        for dir in $(subdirs) ; do \
51
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
52
                then true; else exit 1; fi \
53
        done;
54
 
55
install:
56
        for dir in $(subdirs) ; do \
57
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
58
                then true; else exit 1; fi \
59
        done;
60
 
61
install-binaries:
62
        for dir in $(subdirs) ; do \
63
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
64
                then true; else exit 1; fi \
65
        done;
66
 
67
install-libraries:
68
        for dir in $(subdirs) ; do \
69
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
70
                then true; else exit 1; fi \
71
        done;
72
 
73
install-info info install-check:
74
 
75
clean:
76
        for dir in $(subdirs) ; do \
77
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
78
                then true; else exit 1; fi \
79
        done;
80
 
81
distclean:
82
        rm -f Makefile config.log config.status config.cache
83
        for dir in $(subdirs) ; do \
84
                if (echo "Making in $$dir"; cd $$dir && $(MAKE) $@); \
85
                then true; else exit 1; fi \
86
        done;
87
 
88
#
89
# Target to create a proper Tcl distribution from information in the
90
# master source directory.  DISTDIR must be defined to indicate where
91
# to put the distribution.
92
#
93
 
94
# DO NOT DELETE THIS LINE -- make depend depends on it.

powered by: WebSVN 2.1.0

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