Changeset 8bd0316 in mainline


Ignore:
Timestamp:
2006-06-08T18:25:02Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e92aabf
Parents:
0a9a324
Message:

cleanup

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libc/Makefile.toolchain

    r0a9a324 r8bd0316  
    2929DEFS = -DARCH=$(ARCH)
    3030CFLAGS = -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes  -O3 -nostdlib -nostdinc -I$(LIBC_PREFIX)/include
    31 LFLAGS = -M -N $(SOFTINT_PREFIX)/softint.a
     31LFLAGS = -M -N $(SOFTINT_PREFIX)/libsoftint.a
    3232AFLAGS =
    3333#-Werror
  • libc/arch/ia64/Makefile.inc

    r0a9a324 r8bd0316  
    3333TOOLCHAIN_DIR = /usr/local/ia64/bin
    3434CFLAGS += -fno-unwind-tables -DMALLOC_ALIGNMENT_16
    35 LFLAGS += -N ../softint/softint.a
     35LFLAGS += -N ../softint/libsoftint.a
    3636AFLAGS +=
    3737
  • softint/Makefile

    r0a9a324 r8bd0316  
    5050.PHONY: all clean depend
    5151
    52 all: softint.a
     52all: libsoftint.a
    5353
    5454-include Makefile.depend
    5555
    5656clean:
    57         -rm -f softint.a Makefile.depend
     57        -rm -f libsoftint.a Makefile.depend
    5858        find generic/ -name '*.o' -follow -exec rm \{\} \;
    5959
     
    6161        -makedepend $(DEFS) $(CFLAGS) -f - $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null
    6262
    63 softint.a: depend $(ARCH_OBJECTS) $(GENERIC_OBJECTS)
    64         $(AR) rc softint.a $(ARCH_OBJECTS) $(GENERIC_OBJECTS)
     63libsoftint.a: depend $(ARCH_OBJECTS) $(GENERIC_OBJECTS)
     64        $(AR) rc libsoftint.a $(ARCH_OBJECTS) $(GENERIC_OBJECTS)
    6565
    6666%.o: %.S
Note: See TracChangeset for help on using the changeset viewer.