source: trunk/libs/newlib/src/libgloss/i960/Makefile.in @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 3.2 KB
Line 
1#
2#
3
4DESTDIR =
5VPATH = @srcdir@ @srcdir@/..
6srcdir = @srcdir@
7objdir = .
8srcroot = $(srcdir)/../..
9objroot = $(objdir)/../..
10
11prefix = @prefix@
12exec_prefix = @exec_prefix@
13
14host_alias = @host_alias@
15target_alias = @target_alias@
16
17bindir = @bindir@
18libdir = @libdir@
19tooldir = $(exec_prefix)/$(target_alias)
20
21INSTALL = @INSTALL@
22INSTALL_PROGRAM = @INSTALL_PROGRAM@
23INSTALL_DATA = @INSTALL_DATA@
24
25# Multilib support variables.
26# TOP is used instead of MULTI{BUILD,SRC}TOP.
27MULTIDIRS =
28MULTISUBDIR =
29
30SHELL = /bin/sh
31
32CC = @CC@
33
34AS = @AS@
35AR = @AR@
36LD = @LD@
37RANLIB = @RANLIB@
38
39OBJDUMP = `if [ -f ${objroot}/../binutils/objdump ] ; \
40        then echo ${objroot}/../binutils/objdump ; \
41        else t='$(program_transform_name)'; echo objdump | sed -e $$t ; fi`
42OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \
43        then echo ${objroot}/../binutils/objcopy ; \
44        else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi`
45
46OBJS            = putnum.o unlink.o
47CFLAGS          = -g
48SCRIPTS         =
49
50# Here is all of the simulator stuff
51SIM_SCRIPTS     =
52SIM_LDFLAGS     =
53SIM_BSP         = libsim.a
54SIM_CRT0        = sim-crt0.o
55SIM_OBJS        = sim-print.o sim-inbyte.o sim-sbrk.o sim-abort.o sim-errno.o simulator.o
56SIM_TEST        = sim-test
57SIM_INSTALL     = install-sim
58
59# Here is all of the mon960 stuff
60MON_LDFLAGS     =
61MON_BSP         = libmon960.a
62MON_CRT0        = crt0.o
63MON_OBJS        = mon-read.o mon-write.o mon-syscalls.o mon960.o
64MON_SCRIPTS     = mon960.ld
65MON_TEST        =
66MON_INSTALL     = install-mon
67
68# Host specific makefile fragment comes in here.
69@host_makefile_frag@
70
71#
72# build a test program for each target board. Just trying to get
73# it to link is a good test, so we ignore all the errors for now.
74#
75all: ${MON_CRT0} ${MON_BSP}
76
77#
78# here's where we build the board support packages for each target
79#
80${SIM_BSP}: ${OBJS} ${SIM_OBJS}
81        ${AR} ${ARFLAGS} ${SIM_BSP} ${SIM_OBJS} ${OBJS}
82        ${RANLIB} ${SIM_BSP}
83
84${MON_BSP}: ${OBJS} ${MON_OBJS}
85        ${AR} ${ARFLAGS} ${MON_BSP} ${MON_OBJS} ${OBJS}
86        ${RANLIB} ${MON_BSP}
87
88#
89# here's where we build the test programs for each target
90#
91.PHONY: test
92test:   ${SIM_TEST} ${MVME_TEST} ${EVM_TEST}
93
94sim-test:       sim-test.x sim-test.dis
95
96sim-test.x:     test.o ${SIM_CRT0} ${SIM_BSP}
97        ${CC} ${LDFLAGS_FOR_TARGET} -L${objdir} \
98        ${SIM_CRT0} test.o \
99        -o sim-test.x ${LIBS_FOR_TARGET} -lc ${SIM_BSP}
100
101sim-test.dis:   sim-test.x
102        ${OBJDUMP} -d sim-test.x > sim-test.dis
103
104
105#
106#
107#
108.c.S:
109        ${CC} ${CFLAGS_FOR_TARGET} -c $<
110
111simulator.o: simulator.S
112sim-crt0.o: sim-crt0.S
113mvme-crt0.o: mvme-crt0.S
114mvme-exit.o: mvme-exit.S
115mvme-inbyte.o: mvme-inbyte.S
116mvme-outbyte.o: mvme-outbyte.S
117
118clean mostlyclean:
119        rm -f a.out core *.i *.o *-test *.srec *.dis *.x
120
121distclean maintainer-clean realclean: clean
122        rm -f Makefile config.status *~
123
124.PHONY: install info install-info clean-info
125install: ${MON_INSTALL}
126
127install-mon:
128        set -e; for x in ${MON_CRT0} ${MON_BSP}; do ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
129        set -e; for x in ${MON_SCRIPTS}; do ${INSTALL_DATA} ${srcdir}/$$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
130
131install-sim:
132        set -e; for x in ${SIM_CRT0} ${SIM_BSP} ${SIM_SCRIPTS}; do ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib/$$x; done
133
134doc:
135info:
136install-info:
137clean-info:
138
139Makefile: Makefile.in config.status @host_makefile_frag_path@
140        $(SHELL) config.status
141
142config.status: configure
143        $(SHELL) config.status --recheck
Note: See TracBrowser for help on using the repository browser.