[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 | 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 | |
---|
| 47 | AR = @AR@ |
---|
| 48 | |
---|
| 49 | LD = @LD@ |
---|
| 50 | |
---|
| 51 | RANLIB = @RANLIB@ |
---|
| 52 | |
---|
| 53 | OBJDUMP = `t='$(program_transform_name)'; echo objdump | sed -e $$t` |
---|
| 54 | OBJCOPY = `t='$(program_transform_name)'; echo objcopy | sed -e $$t` |
---|
| 55 | |
---|
| 56 | # object files needed |
---|
| 57 | OBJS = \ |
---|
| 58 | access.o chdir.o chmod.o chown.o close.o conv_stat.o dirfuncs.o dup.o \ |
---|
| 59 | dup2.o exit.o fchdir.o fchmod.o fchown.o fdatasync.o fstat.o fsync.o \ |
---|
| 60 | ftruncate.o getcwd.o getpagesize.o getpid.o gettimeofday.o isatty.o \ |
---|
| 61 | kill.o lchown.o link.o linux_syscalls.o lockf.o lseek.o lstat.o mkdir.o \ |
---|
| 62 | mknod.o mkstemp.o mktemp.o mmap_eaddr.o mremap_eaddr.o msync_eaddr.o \ |
---|
| 63 | munmap_eaddr.o nanosleep.o open.o pread.o pwrite.o read.o readlink.o \ |
---|
| 64 | readv.o rmdir.o sbrk.o sched_yield.o shm_open.o shm_unlink.o stat.o \ |
---|
| 65 | symlink.o sync.o syscalls.o truncate.o umask.o unlink.o utime.o utimes.o \ |
---|
| 66 | write.o writev.o linux_getpid.o linux_gettid.o times.o getitimer.o \ |
---|
| 67 | setitimer.o |
---|
| 68 | |
---|
| 69 | # Object files specific to particular targets. |
---|
| 70 | EVALOBJS = ${OBJS} |
---|
| 71 | |
---|
| 72 | GCC_LDFLAGS = `if [ -d ${objroot}/../gcc ] ; \ |
---|
| 73 | then echo -L${objroot}/../gcc ; fi` |
---|
| 74 | |
---|
| 75 | CRTOBJS = crti.o crtn.o crt1.o crt2.o gcrt1.o gcrt2.o |
---|
| 76 | OUTPUTS = libgloss.a $(CRTOBJS) |
---|
| 77 | |
---|
| 78 | NEWLIB_CFLAGS = `if [ -d ${objroot}/newlib ]; then echo -I${objroot}/newlib/targ-include -I${srcroot}/newlib/libc/include; fi` -ffunction-sections -fdata-sections |
---|
| 79 | NEWLIB_LDFLAGS = `if [ -d ${objroot}/newlib ]; then echo -B${objroot}/newlib/ -L${objroot}/newlib/; fi` |
---|
| 80 | |
---|
| 81 | INCLUDES = -I. -I$(srcdir)/.. |
---|
| 82 | |
---|
| 83 | # TODO: Once libspu is installed on the system we can remove this hack |
---|
| 84 | INCLUDES += -I${srcroot}/../libspu/include |
---|
| 85 | |
---|
| 86 | # Note that when building the library, ${MULTILIB} is not the way multilib |
---|
| 87 | # options are passed; they're passed in $(CFLAGS). |
---|
| 88 | CFLAGS_FOR_TARGET = ${MULTILIB} ${INCLUDES} ${NEWLIB_CFLAGS} |
---|
| 89 | LDFLAGS_FOR_TARGET = ${MULTILIB} ${NEWLIB_LDFLAGS} |
---|
| 90 | AR_FLAGS = qc |
---|
| 91 | |
---|
| 92 | .c.o: |
---|
| 93 | $(CC) $(CFLAGS_FOR_TARGET) -O2 $(INCLUDES) -c $(CFLAGS) $< |
---|
| 94 | |
---|
| 95 | .C.o: |
---|
| 96 | $(CC) $(CFLAGS_FOR_TARGET) -O2 $(INCLUDES) -c $(CFLAGS) $< |
---|
| 97 | .s.o: |
---|
| 98 | $(AS) $(ASFLAGS_FOR_TARGET) $(INCLUDES) $(ASFLAGS) -o $*.o $< |
---|
| 99 | |
---|
| 100 | # |
---|
| 101 | # GCC knows to run the preprocessor on .S files before it assembles them. |
---|
| 102 | # |
---|
| 103 | .S.o: |
---|
| 104 | $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -c $< |
---|
| 105 | |
---|
| 106 | # |
---|
| 107 | # this is a bogus target that'll produce an assembler from the |
---|
| 108 | # C source with the right compiler options. this is so we can |
---|
| 109 | # track down code generation or debug symbol bugs. |
---|
| 110 | # |
---|
| 111 | .c.s: |
---|
| 112 | $(CC) $(CFLAGS_FOR_TARGET) -S $(INCLUDES) $(CFLAGS) $< |
---|
| 113 | |
---|
| 114 | all: ${OUTPUTS} |
---|
| 115 | |
---|
| 116 | # |
---|
| 117 | # here's where we build the library for each target |
---|
| 118 | # |
---|
| 119 | |
---|
| 120 | libgloss.a: $(EVALOBJS) |
---|
| 121 | ${AR} ${ARFLAGS} $@ $(EVALOBJS) |
---|
| 122 | ${RANLIB} $@ |
---|
| 123 | |
---|
| 124 | # C Runtime Library startup code. |
---|
| 125 | crti.o: $(srcdir)/crti.S |
---|
| 126 | $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crti.S -c -o crti.o |
---|
| 127 | |
---|
| 128 | crtn.o: $(srcdir)/crtn.S |
---|
| 129 | $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crtn.S -c -o crtn.o |
---|
| 130 | |
---|
| 131 | crt1.o: $(srcdir)/crt0.S |
---|
| 132 | $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -c -o crt1.o |
---|
| 133 | |
---|
| 134 | crt2.o: $(srcdir)/crt0.S |
---|
| 135 | $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -D_STD_MAIN -c -o crt2.o |
---|
| 136 | |
---|
| 137 | gcrt1.o: $(srcdir)/crt0.S |
---|
| 138 | $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -D_PROFILE -c -o gcrt1.o |
---|
| 139 | |
---|
| 140 | gcrt2.o: $(srcdir)/crt0.S |
---|
| 141 | $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -D_PROFILE -D_STD_MAIN -c -o gcrt2.o |
---|
| 142 | |
---|
| 143 | doc: |
---|
| 144 | |
---|
| 145 | clean mostlyclean: |
---|
| 146 | rm -f $(OUTPUTS) *.i *~ *.o *-test *.srec *.dis *.map *.x |
---|
| 147 | |
---|
| 148 | distclean maintainer-clean realclean: clean |
---|
| 149 | rm -f Makefile config.status $(OUTPUTS) |
---|
| 150 | |
---|
| 151 | .PHONY: install info install-info clean-info |
---|
| 152 | install: |
---|
| 153 | for outputs in ${OUTPUTS}; do\ |
---|
| 154 | ${INSTALL_DATA} $${outputs} $(DESTDIR)/${tooldir}/lib${MULTISUBDIR}/$${outputs}; \ |
---|
| 155 | done |
---|
| 156 | |
---|
| 157 | info: |
---|
| 158 | install-info: |
---|
| 159 | clean-info: |
---|
| 160 | |
---|
| 161 | Makefile: Makefile.in config.status @host_makefile_frag_path@ |
---|
| 162 | $(SHELL) config.status |
---|
| 163 | |
---|
| 164 | config.status: configure |
---|
| 165 | $(SHELL) config.status --recheck |
---|
| 166 | |
---|
| 167 | syscalls.o close.o fstat.o lseek.o open.o read.o stat.o unlink.o write.o shm_open.o shm_unlink.o: jsre.h |
---|