OSDN Git Service

Add -mcpu=rmXXXX switch.
[pf3gnuchains/pf3gnuchains4x.git] / libgloss / libnosys / Makefile.in
1 # Copyright (c) 1998 Cygnus Support
2 #
3 # The authors hereby grant permission to use, copy, modify, distribute,
4 # and license this software and its documentation for any purpose, provided
5 # that existing copyright notices are retained in all copies and that this
6 # notice is included verbatim in any distributions. No written agreement,
7 # license, or royalty fee is required for any of the authorized uses.
8 # Modifications to this software may be copyrighted by their authors
9 # and need not follow the licensing terms described here, provided that
10 # the new terms are clearly indicated on the first page of each file where
11 # they apply.
12
13 VPATH = @srcdir@
14 srcdir = @srcdir@
15 objdir = .
16 srcroot = $(srcdir)/../..
17 objroot = $(objdir)/../..
18
19 prefix = @prefix@
20 exec_prefix = @exec_prefix@
21
22 host_alias = @host_alias@
23 target_alias = @target_alias@
24 program_transform_name = @program_transform_name@
25
26 bindir = @bindir@
27 libdir = @libdir@
28 tooldir = $(exec_prefix)/$(target_alias)
29
30 # Multilib support variables.
31 # TOP is used instead of MULTI{BUILD,SRC}TOP.
32 MULTIDIRS =
33 MULTISUBDIR =
34 MULTIDO = true
35 MULTICLEAN = true
36
37 INSTALL = @INSTALL@
38 INSTALL_PROGRAM = @INSTALL_PROGRAM@
39 INSTALL_DATA = @INSTALL_DATA@
40
41 SHELL = /bin/sh
42
43 CC = @CC@
44
45 #AS = @AS@
46 AS = `if [ -f ${objroot}/../gas/as.new ] ; \
47         then echo ${objroot}/../gas/as.new ; \
48         else echo as ; fi`
49
50 AR = @AR@
51
52 #LD = @LD@
53 LD = `if [ -f ${objroot}/../ld/ld.new ] ; \
54         then echo ${objroot}/../ld/ld.new ; \
55         else echo ld ; fi`
56
57 RANLIB = @RANLIB@
58
59 OBJDUMP = `if [ -f ${objroot}/../binutils/objdump ] ; \
60         then echo ${objroot}/../binutils/objdump ; \
61         else t='$(program_transform_name)'; echo objdump | sed -e $$t ; fi`
62 OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \
63         then echo ${objroot}/../binutils/objcopy ; \
64         else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi`
65
66 # object files needed
67 OBJS = close.o environ.o execve.o fork.o fstat.o getpid.o gettod.o isatty.o \
68         kill.o link.o lseek.o open.o read.o sbrk.o stat.o \
69         times.o unlink.o wait.o write.o
70
71 # Object files specific to particular targets.
72 EVALOBJS = ${OBJS}
73
74 GCC_LDFLAGS = `if [ -d ${objroot}/../gcc ] ; \
75         then echo -L${objroot}/../gcc ; fi`
76
77 OUTPUTS = libnosys.a
78
79 NEWLIB_CFLAGS = `if [ -d ${objroot}/newlib ]; then echo -I${objroot}/newlib/targ-include -I${srcroot}/newlib/libc/include; fi`
80 NEWLIB_LDFLAGS = `if [ -d ${objroot}/newlib ]; then echo -B${objroot}/newlib/ -L${objroot}/newlib/; fi`
81
82 INCLUDES = -I. -I$(srcdir)/..
83 # Note that when building the library, ${MULTILIB} is not the way multilib
84 # options are passed; they're passed in $(CFLAGS).
85 CFLAGS_FOR_TARGET = ${MULTILIB} ${INCLUDES} ${NEWLIB_CFLAGS}
86 LDFLAGS_FOR_TARGET = ${MULTILIB} ${NEWLIB_LDFLAGS}
87 AR_FLAGS = qc
88
89 .c.o:
90         $(CC) $(CFLAGS_FOR_TARGET) -O2 $(INCLUDES) -c $(CFLAGS) $<
91
92 .C.o:
93         $(CC) $(CFLAGS_FOR_TARGET) -O2 $(INCLUDES) -c $(CFLAGS) $<
94 .s.o:
95         $(AS) $(ASFLAGS_FOR_TARGET) $(INCLUDES) $(ASFLAGS) -o $*.o $<
96
97 #
98 # GCC knows to run the preprocessor on .S files before it assembles them.
99 #
100 .S.o:
101         $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -c $<
102
103 #
104 # this is a bogus target that'll produce an assembler from the
105 # C source with the right compiler options. this is so we can
106 # track down code generation or debug symbol bugs.
107 #
108 .c.s:
109         $(CC) $(CFLAGS_FOR_TARGET) -S $(INCLUDES) $(CFLAGS) $<
110
111 all: ${OUTPUTS}
112
113 #
114 # here's where we build the library for each target
115 #
116
117 libnosys.a: $(EVALOBJS)
118         ${AR} ${ARFLAGS} $@ $(EVALOBJS)
119         ${RANLIB} $@
120
121 doc:    
122
123 clean mostlyclean:
124         rm -f $(OUTPUTS) *.i *~ *.o *-test *.srec *.dis *.map *.x
125
126 distclean maintainer-clean realclean: clean
127         rm -f Makefile config.status $(OUTPUTS)
128
129 .PHONY: install info install-info clean-info
130 install:
131         @for outputs in ${OUTPUTS}; do\
132          mkdir -p $(tooldir)/lib${MULTISUBDIR}; \
133          $(INSTALL_PROGRAM) $${outputs} $(tooldir)/lib${MULTISUBDIR}; \
134         done
135
136 info:
137 install-info:
138 clean-info:
139
140 Makefile: Makefile.in config.status @host_makefile_frag_path@
141         $(SHELL) config.status
142
143 config.status: configure
144         $(SHELL) config.status --recheck