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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.3/] [utils/] [misc/] [Makefile.in] - Blame information for rev 1774

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

Line No. Rev Author Line
1 1181 sfurman
#
2
# Makefile
3
#   Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation
4
#
5
# This file is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
9
#
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
18
#
19
 
20
#
21
# Makefile for devo/util/misc
22
#
23
 
24
srcdir = .
25
 
26
prefix = /usr/local
27
 
28
exec_prefix = $(prefix)
29
bindir = $(exec_prefix)/bin
30
libdir = $(exec_prefix)/lib
31
tooldir = $(exec_prefix)
32
 
33
SHELL = /bin/sh
34
 
35
INSTALL = `cd $(srcdir); pwd`/../../install-sh -c
36
INSTALL_PROGRAM = $(INSTALL)
37
INSTALL_DATA = $(INSTALL)
38
 
39
AR_FLAGS = qv
40
MAKEINFO = makeinfo
41
 
42
SUBDIRS=
43
 
44
.NOEXPORT:
45
MAKEOVERRIDES=
46
 
47
#### Host, target, and site specific Makefile fragments come in here.
48
###
49
 
50
# These are roughly topologically sorted in order to make porting more
51
# streamlined.
52
FLAGS_TO_PASS = \
53
        "CC=$(CC)" \
54
        "CFLAGS=$(CFLAGS)" \
55
        "AR=$(AR)" \
56
        "RANLIB=$(RANLIB)" \
57
        "AR_FLAGS=$(AR_FLAGS)" \
58
        "AS=$(AS)" \
59
        "CROSS_CFLAGS=$(CROSS_CFLAGS)" \
60
        "TARGET_CFLAGS=$(TARGET_CFLAGS)" \
61
        "INCLUDES=$(INCLUDES)"
62
 
63
all:
64
        @for dir in ${SUBDIRS}; do \
65
        if [ -d $$dir ]; then \
66
            (rootme=`pwd`/ ; export rootme ; \
67
            rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
68
            cd $$dir; $(MAKE) $(FLAGS_TO_PASS)); \
69
            fi; \
70
        done
71
 
72
install:
73
        @for dir in ${SUBDIRS}; do \
74
            echo "$$dir:"; \
75
            if [ -d $$dir ]; then \
76
                (cd $$dir; $(MAKE) install); \
77
                fi; \
78
            done
79
 
80
clean:
81
        -rm -f *~ core *.o a.out
82
        @for dir in ${SUBDIRS}; do \
83
            echo "$$dir:"; \
84
            if [ -d $$dir ]; then \
85
                (cd $$dir; $(MAKE) clean); \
86
                fi; \
87
            done
88
 
89
distclean maintainer-clean realclean: clean
90
        @for dir in ${SUBDIRS}; do \
91
            echo "$$dir:"; \
92
            (cd $$dir; $(MAKE) distclean); \
93
        done
94
        -rm -f *~ core
95
        -rm -f Makefile config.status
96
 
97
.PHONY: info install-info clean-info
98
info:
99
install-info:
100
clean-info:
101
 
102
force:
103
 
104
Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
105
        $(SHELL) config.status
106
 
107
 
108
 
109
 
110
 

powered by: WebSVN 2.1.0

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