*** empty log message ***
[platform/upstream/binutils.git] / Makefile.in
1 #
2 # Makefile for directory with subdirs to build.
3 #
4 # Last Mod Thu Apr 18 17:41:48 PDT 1991, by rich@cygint.cygnus.com
5 #
6
7 # $Id$
8
9 srcdir = .
10 destdir = /usr/local
11
12 #CC = gcc -b$(target) # -B$(srcdir)/../gas/Host-$(host)/Target-$(target)/
13 #CFLAGS = -g -nostdinc -nostdlib -I- -I/usr/local/lib/gcc/$(target)/1.92/include -I$(srcdir) -I$(srcdir)/../include -I$(OSINCLUDE)
14
15 RANLIB = ranlib
16 AR = ar
17 AR_FLAGS = cqv
18
19 BOOTSTRAPPABLE = libiberty bfd binutils ld gas gcc gnulib
20 OTHERS = 
21
22 #### host and target specific makefile fragments come in here.
23 ###
24
25 all:
26         $(MAKE) subdir_do DO=all "DODIRS=$(BOOTSTRAPPABLE) $(OTHERS)"
27
28 subdir_do: $(DODIRS)
29         for i in $(DODIRS); \
30           do \
31             if (cd $(srcdir)/$$i`if [ -d $(srcdir)/$$i.$(target) ] ; \
32                 then echo .$(target) ; fi`$(subdir); \
33                 $(MAKE) \
34                     "destdir=$(destdir)" \
35                     "AR=$(AR)" \
36                     "AR_FLAGS=$(AR_FLAGS)" \
37                     "RANLIB=$(RANLIB)" $(DO)) ; \
38             then true ; \
39             else exit 1 ; \
40             fi ;\
41           done
42
43 bootstrap:
44         $(MAKE) all
45         $(MAKE) stage1
46         $(MAKE) pass "stagepass=stage1"
47         $(MAKE) stage2
48         $(MAKE) pass "stagepass=stage2"
49
50 bootstrap2:
51         $(MAKE) pass "stagepass=stage1"
52         $(MAKE) stage2
53         $(MAKE) pass "stagepass=stage2"
54
55 bootstrap3:
56         $(MAKE) pass "stagepass=stage2"
57
58 pass:
59         $(MAKE) subdir_do DO=all "DODIRS=$(BOOTSTRAPPABLE)" \
60                 "CC=$(srcdir)/../gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
61                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/gcc -O \
62                 -B$(srcdir)/../gcc`if [ -d $(srcdir)/gcc.$(target) ] ; \
63                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ \
64                 -B$(srcdir)/../gas`if [ -d $(srcdir)/gas.$(target) ] ; \
65                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/" \
66                 "AR=$(srcdir)/../binutils`if [ -d $(srcdir)/binutils.$(target) ] ; \
67                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ar" \
68                 "RANLIB=$(srcdir)/../binutils`if [ -d $(srcdir)/binutils.$(target) ] ; \
69                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/ranlib" \
70                 "LOADLIBES=$(srcdir)/../gnulib`if [ -d $(srcdir)/binutils.$(target) ] ; \
71                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/gnulib.a /lib/libc.a" \
72                 "LDFLAGS=-nostdlib /lib/crt0.o \
73                 -B$(srcdir)/../ld`if [ -d $(srcdir)/ld.$(target) ] ; \
74                 then echo .$(target) ; fi`$(subdir)/$(stagepass)/"
75
76
77 stage1:
78         $(MAKE) subdir_do DO=stage1 "DODIRS=$(BOOTSTRAPPABLE)"
79
80 stage2:
81         $(MAKE) subdir_do DO=stage2 "DODIRS=$(BOOTSTRAPPABLE)"
82
83 stage3:
84         $(MAKE) subdir_do DO=stage3 "DODIRS=$(BOOTSTRAPPABLE)"
85
86 stage4:
87         $(MAKE) subdir_do DO=stage4 "DODIRS=$(BOOTSTRAPPABLE)"
88
89 de-stage1:; $(MAKE) subdir_do DO=de-stage1 "DODIRS=$(BOOTSTRAPPABLE)"
90 de-stage2:; $(MAKE) subdir_do DO=de-stage2 "DODIRS=$(BOOTSTRAPPABLE)"
91 de-stage3:; $(MAKE) subdir_do DO=de-stage3 "DODIRS=$(BOOTSTRAPPABLE)"
92 de-stage4:; $(MAKE) subdir_do DO=de-stage4 "DODIRS=$(BOOTSTRAPPABLE)"
93
94 clean:
95         rm -rf *.a TEMP errs core *.o *~ \#* TAGS *.E
96         $(MAKE) subdir_do DO=clean "DODIRS=$(BOOTSTRAPPABLE) $(OTHERS)"
97
98 install:
99         $(MAKE) subdir_do DO=install "DODIRS=$(BOOTSTRAPPABLE) $(OTHERS)"
100
101 etags tags: TAGS
102
103 TAGS: FORCE
104         etags `$(MAKE) ls`
105
106 ls:
107         @echo Makefile
108         @for i in $(SUBDIRS); \
109         do \
110                 (cd $$i; \
111                         pwd=`pwd`; \
112                         wd=`basename $$pwd`; \
113                         for j in `$(MAKE) ls`; \
114                         do \
115                                 echo $$wd/$$j; \
116                         done) \
117         done
118
119 FORCE:
120
121 # with the gnu make, this is done automatically.
122
123 Makefile: $(srcdir)/Makefile.in $(srcdir)/configure
124         (cd $(srcdir) ; \
125                 ./configure +destdir=$(destdir) +norecurse \
126                  `if [ "$(srcdir)" != "." ] ; then echo +f; fi` \
127                 $(host) +target=$(target))
128
129 #
130 # $Log$
131 # Revision 1.11  1991/05/03 21:30:41  gnu
132 # Rename getopt to libiberty.
133 #
134 # Revision 1.10  1991/04/24  16:50:53  rich
135 # Three staging checkpoint.
136 #
137 # Revision 1.9  1991/04/17  01:34:36  rich
138 # Added getopt for binutils, fixed problem with host dependancies in
139 # configure.template.
140 #
141 # Revision 1.8  1991/04/15  23:43:45  rich
142 # Now handles multiple hosts and targets.
143 #
144 # Revision 1.7  1991/04/13  13:06:16  tiemann
145 # Don't depend `install' on `all'.  Actually, the way things work, all
146 # depends on things being incrementally installed, and install depends
147 # on everything happening in a topological fashion.
148 #
149 # This will need to be worked on further, but for now it's ok.
150 #
151 # Revision 1.6  1991/04/13  10:04:14  rich
152 # Now can build gas for a29k on a29k.
153 #
154 # Revision 1.5  1991/04/13  07:40:41  rich
155 # Fixed an ordering bug.  Now everything is built, and then installed.
156 #
157 # Revision 1.4  1991/04/13  02:11:09  rich
158 # Config cut 3.  We now almost install a29k.
159 #
160 # Revision 1.3  1991/04/11  02:41:53  rich
161 # Cut 2 config.  Subdirs.
162 #
163 #
164 #
165
166 # end of Makefile.in