Changeset 1d04e16 in rtems


Ignore:
Timestamp:
11/16/99 13:45:51 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
25f705e
Parents:
7f93f772
Message:

Moved start code from lib/start to libbsp.

Location:
c/src/lib
Files:
9 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/i960/cvme961/Makefile.in

    r7f93f772 r1d04e16  
    2525# wrapup is the one that actually builds and installs the library
    2626#  from the individual .rel files built in other directories
    27 SUB_DIRS = include startup clock console $(MP_SUPPORT) timer wrapup
     27SUB_DIRS = include start startup clock console $(MP_SUPPORT) timer wrapup
    2828
    2929Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • c/src/lib/libbsp/i960/cvme961/start/Makefile.in

    r7f93f772 r1d04e16  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = .
     8top_builddir = ../../..
     9subdir = i960/cvme961/start
    910
    1011RTEMS_ROOT = @RTEMS_ROOT@
     
    1213
    1314VPATH = @srcdir@
     15
     16PGM = ${ARCH}/start.o
    1417
    1518# C source names, if any, go here -- minus the .c
     
    2528S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
    2629
    27 SRCS = $(C_FILES) $(H_FILES) $(S_FILES)
    28 OBJS = $(C_O_FILES) $(S_O_FILES)
     30SRCS = $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
     31OBJS = $(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
    2932
    3033include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
     
    3235
    3336INSTALL_CHANGE = @INSTALL_CHANGE@
    34 
    35 PGM = ${ARCH}/start.o
    3637
    3738#
     
    6263Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    6364        cd $(top_builddir) \
    64          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
     65         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
  • c/src/lib/libbsp/mips64orion/p4000/start/Makefile.in

    r7f93f772 r1d04e16  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = .
     8top_builddir = ../../..
     9subdir = mips64orion/p4000/start
    910
    1011RTEMS_ROOT = @RTEMS_ROOT@
     
    1213
    1314VPATH = @srcdir@
     15
     16PGM = ${ARCH}/start.o
    1417
    1518# C source names, if any, go here -- minus the .c
     
    2124
    2225# Assembly source names, if any, go here -- minus the .S
    23 S_PIECES = idt_csu
     26S_PIECES = start
    2427S_FILES = $(S_PIECES:%=%.S)
    2528S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
     
    3235
    3336INSTALL_CHANGE = @INSTALL_CHANGE@
    34 
    35 PGM = ${ARCH}/idt_csu.o
    3637
    3738#
     
    6263Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    6364        cd $(top_builddir) \
    64          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
     65         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
  • c/src/lib/libbsp/sh/gensh1/Makefile.in

    r7f93f772 r1d04e16  
    2121# wrapup is the one that actually builds and installs the library
    2222#  from the individual .rel files built in other directories
    23 SUB_DIRS = include startup scitab wrapup
     23SUB_DIRS = include start startup scitab wrapup
    2424
    2525Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  • c/src/lib/libbsp/sh/gensh1/start/Makefile.in

    r7f93f772 r1d04e16  
    66srcdir = @srcdir@
    77top_srcdir = @top_srcdir@
    8 top_builddir = .
     8top_builddir = ../../..
     9subdir = sh/gensh1/start
    910
    1011RTEMS_ROOT = @RTEMS_ROOT@
     
    1314VPATH = @srcdir@
    1415
    15 PGMS = ${ARCH}/start.o
     16PGM = ${ARCH}/start.o
    1617
    1718# C source names, if any, go here -- minus the .c
     
    2728S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
    2829
    29 SRCS = $(C_FILES) $(H_FILES) $(S_FILES)
    30 OBJS = $(C_O_FILES) $(S_O_FILES)
     30SRCS = $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
     31OBJS = $(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
    3132
    3233include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
     
    4748LDFLAGS +=
    4849
    49 # force optimization, unless start.o will not work
    50 # CFLAGS_PROFILE=
    51 # CFLAGS_DEBUG=-O3
    52 # CFLAGS_OPTIMIZE=-O3
    53 
    5450#
    5551# Add your list of files to delete here.  The config files
     
    6359
    6460all: ${ARCH} $(SRCS) $(OBJS) $(PGM)
    65         @$(INSTALL_VARIANT) -m 755 ${PGMS} $(PROJECT_RELEASE)/lib
     61        $(INSTALL_VARIANT) -m 755 ${PGM} $(PROJECT_RELEASE)/lib
    6662
    6763Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    6864        cd $(top_builddir) \
    69          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
     65         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracChangeset for help on using the changeset viewer.