[444] | 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 | DESTDIR = |
---|
| 14 | VPATH = @srcdir@ |
---|
| 15 | srcdir = @srcdir@ |
---|
| 16 | objdir = . |
---|
| 17 | srcroot = $(srcdir)/../.. |
---|
| 18 | objroot = $(objdir)/../.. |
---|
| 19 | |
---|
| 20 | prefix = @prefix@ |
---|
| 21 | exec_prefix = @exec_prefix@ |
---|
| 22 | |
---|
| 23 | host_alias = @host_alias@ |
---|
| 24 | target_alias = @target_alias@ |
---|
| 25 | program_transform_name = @program_transform_name@ |
---|
| 26 | |
---|
| 27 | bindir = @bindir@ |
---|
| 28 | libdir = @libdir@ |
---|
| 29 | tooldir = $(exec_prefix)/$(target_alias) |
---|
| 30 | |
---|
| 31 | # Multilib support variables. |
---|
| 32 | # TOP is used instead of MULTI{BUILD,SRC}TOP. |
---|
| 33 | MULTIDIRS = |
---|
| 34 | MULTISUBDIR = |
---|
| 35 | MULTIDO = true |
---|
| 36 | MULTICLEAN = true |
---|
| 37 | |
---|
| 38 | INSTALL = @INSTALL@ |
---|
| 39 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
---|
| 40 | INSTALL_DATA = @INSTALL_DATA@ |
---|
| 41 | |
---|
| 42 | SHELL = /bin/sh |
---|
| 43 | |
---|
| 44 | CC = @CC@ |
---|
| 45 | |
---|
| 46 | #AS = @AS@ |
---|
| 47 | AS = `if [ -f ${objroot}/../gas/as.new ] ; \ |
---|
| 48 | then echo ${objroot}/../gas/as.new ; \ |
---|
| 49 | else echo as ; fi` |
---|
| 50 | |
---|
| 51 | AR = @AR@ |
---|
| 52 | |
---|
| 53 | #LD = @LD@ |
---|
| 54 | LD = `if [ -f ${objroot}/../ld/ld.new ] ; \ |
---|
| 55 | then echo ${objroot}/../ld/ld.new ; \ |
---|
| 56 | else echo ld ; fi` |
---|
| 57 | |
---|
| 58 | RANLIB = @RANLIB@ |
---|
| 59 | |
---|
| 60 | OBJDUMP = `if [ -f ${objroot}/../binutils/objdump ] ; \ |
---|
| 61 | then echo ${objroot}/../binutils/objdump ; \ |
---|
| 62 | else t='$(program_transform_name)'; echo objdump | sed -e $$t ; fi` |
---|
| 63 | OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \ |
---|
| 64 | then echo ${objroot}/../binutils/objcopy ; \ |
---|
| 65 | else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi` |
---|
| 66 | |
---|
| 67 | CRT0 = crt0.o |
---|
| 68 | |
---|
| 69 | # Generic object files common to all targets. |
---|
| 70 | GENOBJS = _exit.o access.o chmod.o close.o crt1.o \ |
---|
| 71 | fstat.o getpid.o isatty.o \ |
---|
| 72 | kill.o lseek.o open.o read.o \ |
---|
| 73 | sbrk.o stat.o time.o trap.o unlink.o utime.o write.o |
---|
| 74 | |
---|
| 75 | # Object files specific to particular targets. |
---|
| 76 | EVALOBJS = ${GENOBJS} |
---|
| 77 | |
---|
| 78 | CFLAGS = -g |
---|
| 79 | |
---|
| 80 | GCC_LDFLAGS = `if [ -d ${objroot}/../gcc ] ; \ |
---|
| 81 | then echo -L${objroot}/../gcc ; fi` |
---|
| 82 | |
---|
| 83 | SCRIPTS = eval sim |
---|
| 84 | BSP = libeval.a |
---|
| 85 | |
---|
| 86 | # Host specific makefile fragment comes in here. |
---|
| 87 | @host_makefile_frag@ |
---|
| 88 | |
---|
| 89 | # |
---|
| 90 | # build a test program for each target board. Just trying to get |
---|
| 91 | # it to link is a good test, so we ignore all the errors for now. |
---|
| 92 | # |
---|
| 93 | |
---|
| 94 | all: ${CRT0} test.o ${BSP} |
---|
| 95 | |
---|
| 96 | # |
---|
| 97 | # here's where we build the board support packages for each target |
---|
| 98 | # |
---|
| 99 | |
---|
| 100 | libeval.a: $(EVALOBJS) |
---|
| 101 | ${AR} ${ARFLAGS} $@ $(EVALOBJS) |
---|
| 102 | ${RANLIB} $@ |
---|
| 103 | |
---|
| 104 | |
---|
| 105 | # compile a fully linked binary. The -Wl,-T*.ld is for the linker |
---|
| 106 | # script. By using -Wl, the linker script is put on the proper place |
---|
| 107 | # in the comand line for ld, and all the symbols will get fully |
---|
| 108 | # resolved. |
---|
| 109 | |
---|
| 110 | test: $(CRT0) test.o |
---|
| 111 | ${CC} $(CFLAGS_FOR_TARGET) -L${srcdir} -L${objdir} \ |
---|
| 112 | test.o -o $@ $(NEWLIB_LDFLAGS) -Wl,-Teval.ld |
---|
| 113 | @echo Done... |
---|
| 114 | |
---|
| 115 | doc: |
---|
| 116 | |
---|
| 117 | clean mostlyclean: |
---|
| 118 | rm -f a.out core *.i *~ *.o *-test *.srec *.dis *.map *.x |
---|
| 119 | |
---|
| 120 | distclean maintainer-clean realclean: clean |
---|
| 121 | rm -f Makefile config.status a.out |
---|
| 122 | |
---|
| 123 | .PHONY: install info install-info clean-info |
---|
| 124 | install: |
---|
| 125 | $(INSTALL_PROGRAM) $(CRT0) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(CRT0) |
---|
| 126 | @for bsp in ${BSP}; do\ |
---|
| 127 | $(INSTALL_PROGRAM) $${bsp} $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; \ |
---|
| 128 | done |
---|
| 129 | @for script in ${SCRIPTS}; do\ |
---|
| 130 | $(INSTALL_DATA) ${srcdir}/$${script}.ld $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$${script}.ld; \ |
---|
| 131 | done |
---|
| 132 | |
---|
| 133 | info: |
---|
| 134 | install-info: |
---|
| 135 | clean-info: |
---|
| 136 | |
---|
| 137 | test.o: ${srcdir}/test.c |
---|
| 138 | |
---|
| 139 | # these are for the BSPs |
---|
| 140 | ${CRT0}: ${srcdir}/crt0.S |
---|
| 141 | |
---|
| 142 | # target specific makefile fragment comes in here. |
---|
| 143 | @target_makefile_frag@ |
---|
| 144 | |
---|
| 145 | Makefile: Makefile.in config.status @host_makefile_frag_path@ @target_makefile_frag_path@ |
---|
| 146 | $(SHELL) config.status |
---|
| 147 | |
---|
| 148 | config.status: configure |
---|
| 149 | $(SHELL) config.status --recheck |
---|