File: Makefile.in

package info (click to toggle)
gdb-arm 200000308-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 61,732 kB
  • ctags: 90,617
  • sloc: ansic: 751,546; exp: 42,053; sh: 13,928; makefile: 10,085; asm: 5,015; cpp: 4,673; yacc: 4,120; lisp: 2,214; perl: 1,730; sed: 620; awk: 170; fortran: 5
file content (118 lines) | stat: -rw-r--r-- 2,588 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#
# Makefile
#   Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
#

#
# Makefile for devo/util
#

srcdir = .

prefix = /usr/local

exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
tooldir = $(exec_prefix)

SHELL = /bin/sh

INSTALL = `cd $(srcdir); pwd`/../../install-sh -c
INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = $(INSTALL)

AR_FLAGS = qv
MAKEINFO = makeinfo

SUBDIRS=

.NOEXPORT:
MAKEOVERRIDES=

#### Host, target, and site specific Makefile fragments come in here.
###

# These are roughly topologically sorted in order to make porting more
# streamlined.
FLAGS_TO_PASS = \
	"CC=$(CC)" \
	"CFLAGS=$(CFLAGS)" \
	"AR=$(AR)" \
	"AR_FLAGS=$(AR_FLAGS)" \
	"AS=$(AS)" \
	"CROSS_CFLAGS=$(CROSS_CFLAGS)" \
	"TARGET_CFLAGS=$(TARGET_CFLAGS)" \
	"INCLUDES=$(INCLUDES)"

all:
	@for dir in .. ${SUBDIRS}; do \
	if [ x$${dir} != x.. ]; then \
	  if [ -d $$dir ]; then \
	    (rootme=`pwd`/ ; export rootme ; \
	    rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
	    cd $$dir; $(MAKE) $(FLAGS_TO_PASS)); \
	    fi; \
	  fi; \
	done

install:
	@for dir in .. ${SUBDIRS}; do \
	if [ x$${dir} != x.. ]; then \
	    echo "$$dir:"; \
	    if [ -d $$dir ]; then \
		(cd $$dir; $(MAKE) install); \
		fi; \
	    fi; \
	done

clean mostlyclean:
	-rm -f *~ core *.o a.out 
	@for dir in .. ${SUBDIRS}; do \
	if [ x$${dir} != x.. ]; then \
	    echo "$$dir:"; \
	    if [ -d $$dir ]; then \
		(cd $$dir; $(MAKE) $@); \
		fi; \
	    fi; \
	done

distclean maintainer-clean realclean: clean
	@for dir in .. ${SUBDIRS}; do \
	if [ x$${dir} != x.. ]; then \
	    echo "$$dir:"; \
	    (cd $$dir; $(MAKE) $@); \
	    fi ; \
	done
	-rm -f *~ core
	-rm -f Makefile config.status 

.PHONY: info install-info clean-info dvi
info:
install-info:
clean-info:
dvi:

force:

Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
	$(SHELL) config.status