Changeset daa9eb96 in rtems


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

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

  • clock/Makefile.am: Eliminate VPATH.
  • console/Makefile.am: Eliminate VPATH.
  • shmsupp/Makefile.am: Eliminate VPATH.
  • startup/Makefile.am: Eliminate VPATH.
  • timer/Makefile.am: Eliminate VPATH.
  • vectors/Makefile.am: Eliminate VPATH.
Location:
c/src/lib/libbsp/powerpc/psim
Files:
7 edited

Legend:

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

    rae3ef43d rdaa9eb96  
     12003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * clock/Makefile.am: Eliminate VPATH.
     4        * console/Makefile.am: Eliminate VPATH.
     5        * shmsupp/Makefile.am: Eliminate VPATH.
     6        * startup/Makefile.am: Eliminate VPATH.
     7        * timer/Makefile.am: Eliminate VPATH.
     8        * vectors/Makefile.am: Eliminate VPATH.
     9
    1102003-12-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    211
  • c/src/lib/libbsp/powerpc/psim/clock/Makefile.am

    rae3ef43d rdaa9eb96  
    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/psim/console/Makefile.am

    rae3ef43d rdaa9eb96  
    33##
    44
    5 VPATH = @srcdir@:@srcdir@/../../../shared
    6 
    75PGM = $(ARCH)/console.rel
    86
    9 C_FILES = console-io.c console-polled.c
    10 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
     7C_FILES = console-io.c
     8OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
     9
     10shared_C_FILES = ../../../shared/console-polled.c
     11OBJS += $(shared_C_FILES:../../../shared/%.c=$(ARCH)/%.$(OBJEXT))
    1112
    1213S_FILES = consupp.S
    13 S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
    14 
    15 OBJS = $(C_O_FILES) $(S_O_FILES)
     14OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
    1615
    1716include $(top_srcdir)/../../../../automake/compile.am
    1817include $(top_srcdir)/../../../../automake/lib.am
    1918
    20 #
    21 # (OPTIONAL) Add local stuff here using +=
    22 #
     19$(ARCH)/%$(LIB_VARIANT).$(OBJEXT): ../../../shared/%.c $(ARCH)/$(dirstamp)
     20        ${COMPILE} -o $@ -c $<
    2321
    2422$(PGM): $(OBJS)
     
    2725# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    2826
    29 all-local: $(OBJS) $(PGM)
     27all-local: $(PGM)
    3028
    31 .PRECIOUS: $(PGM)
    32 
    33 EXTRA_DIST = console-io.c consupp.S
     29EXTRA_DIST = $(C_FILES) $(S_FILES)
    3430
    3531include $(top_srcdir)/../../../../automake/local.am
  • c/src/lib/libbsp/powerpc/psim/shmsupp/Makefile.am

    rae3ef43d rdaa9eb96  
    2323
    2424if HAS_MP
    25 all-local: $(OBJS) $(PGM)
     25all-local: $(PGM)
    2626endif
    2727
  • c/src/lib/libbsp/powerpc/psim/startup/Makefile.am

    rae3ef43d rdaa9eb96  
    33##
    44
    5 VPATH = @srcdir@:@srcdir@/../../../shared
     5
    66
    77PGM = $(ARCH)/startup.rel
    88
    9 C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \
    10     setvec.c gnatinstallhandler.c
    11 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    12 
    13 OBJS = $(C_O_FILES)
     9C_FILES = bspclean.c bspstart.c setvec.c
     10OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    1411
    1512include $(top_srcdir)/../../../../automake/compile.am
    1613include $(top_srcdir)/../../../../automake/lib.am
    1714
    18 #
    19 # (OPTIONAL) Add local stuff here using +=
    20 #
     15shared_C_FILES = $(top_srcdir)/../../shared/bootcard.c
     16shared_C_FILES += $(top_srcdir)/../../shared/bsplibc.c
     17shared_C_FILES += $(top_srcdir)/../../shared/bsppost.c
     18shared_C_FILES += $(top_srcdir)/../../shared/main.c
     19shared_C_FILES += $(top_srcdir)/../../shared/sbrk.c
     20shared_C_FILES += $(top_srcdir)/../../shared/gnatinstallhandler.c
     21OBJS += $(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT))
     22
     23$(ARCH)/%.$(OBJEXT): $(top_srcdir)/../../shared/%.c $(ARCH)/$(dirstamp)
     24        ${COMPILE} -o $@ -c $<
     25
    2126
    2227$(PGM): $(OBJS)
  • c/src/lib/libbsp/powerpc/psim/timer/Makefile.am

    rae3ef43d rdaa9eb96  
    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/psim/vectors/Makefile.am

    rae3ef43d rdaa9eb96  
    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)
Note: See TracChangeset for help on using the changeset viewer.