Changeset e9b6f41 in rtems


Ignore:
Timestamp:
12/22/03 16:09:45 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
ae3ef43d
Parents:
c659294
Message:

2003-12-22 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am: Eliminate VPATH.
  • console/Makefile.am: Eliminate VPATH.
  • irq/Makefile.am: Eliminate VPATH.
  • network/Makefile.am: Eliminate VPATH.
  • startup/Makefile.am: Eliminate VPATH.
Location:
c/src/lib/libbsp/powerpc/mpc8260ads
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/mpc8260ads/ChangeLog

    rc659294 re9b6f41  
     12003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * clock/Makefile.am: Eliminate VPATH.
     4        * console/Makefile.am: Eliminate VPATH.
     5        * irq/Makefile.am: Eliminate VPATH.
     6        * network/Makefile.am: Eliminate VPATH.
     7        * startup/Makefile.am: Eliminate VPATH.
     8
    192003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    210
  • c/src/lib/libbsp/powerpc/mpc8260ads/clock/Makefile.am

    rc659294 re9b6f41  
    33##
    44
    5 VPATH = @srcdir@:@srcdir@/../../shared/clock
    6 
    75C_FILES = p_clock.c
    8 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    9 
    10 OBJS = $(C_O_FILES)
     6OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    117
    128include $(top_srcdir)/../../../../automake/compile.am
    139include $(top_srcdir)/../../../../automake/lib.am
    1410
    15 #
    16 # (OPTIONAL) Add local stuff here using +=
    17 #
     11# the .o files built here will be put into libbsp.a by ../wrapup/Makefile
    1812
    19 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    20 
    21 all-local: $(OBJS)
     13noinst_DATA = $(OBJS)
    2214
    2315include $(top_srcdir)/../../../../automake/local.am
  • c/src/lib/libbsp/powerpc/mpc8260ads/console/Makefile.am

    rc659294 re9b6f41  
    2222# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    2323
    24 all-local: $(OBJS) $(PGM)
     24all-local: $(PGM)
    2525
    2626.PRECIOUS: $(PGM)
  • c/src/lib/libbsp/powerpc/mpc8260ads/irq/Makefile.am

    rc659294 re9b6f41  
    1616include $(top_srcdir)/../../../../automake/lib.am
    1717
    18 #
    19 # (OPTIONAL) Add local stuff here using +=
    20 #
     18noinst_DATA = $(OBJS)
    2119
    22 $(PGM): $(OBJS)
    23         $(make-rel)
     20# the .o files built here will be put into libbsp.a by ../wrapup/Makefile
    2421
    25 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    26 
    27 all-local: $(PREINSTALL_FILES) $(OBJS) $(PGM)
     22all-local: $(PREINSTALL_FILES)
    2823
    2924EXTRA_DIST = irq.c irq.h irq_asm.S irq_init.c
  • c/src/lib/libbsp/powerpc/mpc8260ads/network/Makefile.am

    rc659294 re9b6f41  
    2525
    2626if HAS_NETWORKING
    27 all-local: $(OBJS) $(PGM)
     27all-local: $(PGM)
    2828endif
    2929
  • c/src/lib/libbsp/powerpc/mpc8260ads/startup/Makefile.am

    rc659294 re9b6f41  
    33##
    44
    5 VPATH = @srcdir@:@srcdir@/../../../shared
    6 
    75PGM = $(ARCH)/startup.rel
    86
    9 C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
    10     setvec.c gnatinstallhandler.c cpuinit.c
    11 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    12 
    13 OBJS = $(C_O_FILES)
     7C_FILES = bspstart.c cpuinit.c
     8OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    149
    1510include $(top_srcdir)/../../../../automake/compile.am
    1611include $(top_srcdir)/../../../../automake/lib.am
    1712
    18 #
    19 # (OPTIONAL) Add local stuff here using +=
    20 #
     13shared_C_FILES = $(top_srcdir)/../../shared/bootcard.c
     14shared_C_FILES += $(top_srcdir)/../../shared/bspclean.c
     15shared_C_FILES += $(top_srcdir)/../../shared/bsplibc.c
     16shared_C_FILES += $(top_srcdir)/../../shared/bsppost.c
     17shared_C_FILES += $(top_srcdir)/../../shared/main.c
     18shared_C_FILES += $(top_srcdir)/../../shared/sbrk.c
     19shared_C_FILES += $(top_srcdir)/../../shared/gnatinstallhandler.c
     20OBJS += \
     21    $(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT))
     22
     23$(ARCH)/%.$(OBJEXT): $(top_srcdir)/../../shared/%.c $(ARCH)/$(dirstamp)
     24        ${COMPILE} -o $@ -c $<
    2125
    2226$(PGM): $(OBJS)
     
    2933all-local: $(PGM) $(TMPINSTALL_FILES)
    3034
    31 EXTRA_DIST = bspstart.c linkcmds setvec.c
     35EXTRA_DIST = linkcmds $(C_FILES)
    3236
    3337$(PROJECT_LIB)/$(dirstamp):
Note: See TracChangeset for help on using the changeset viewer.