Changeset d48576d in rtems


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

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

  • dlentry/Makefile.am: Eliminate VPATH.
  • flashentry/Makefile.am: Eliminate VPATH.
  • startup/Makefile.am: Eliminate VPATH.
Location:
c/src/lib/libbsp/powerpc/helas403
Files:
4 edited

Legend:

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

    rd0e77c7 rd48576d  
     12003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * dlentry/Makefile.am: Eliminate VPATH.
     4        * flashentry/Makefile.am: Eliminate VPATH.
     5        * startup/Makefile.am: Eliminate VPATH.
     6
    172003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/lib/libbsp/powerpc/helas403/dlentry/Makefile.am

    rd0e77c7 rd48576d  
    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/helas403/flashentry/Makefile.am

    rd0e77c7 rd48576d  
    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/helas403/startup/Makefile.am

    rd0e77c7 rd48576d  
    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
    11 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    12 
    13 OBJS = $(C_O_FILES)
     7C_FILES = bspclean.c bspstart.c setvec.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/bsplibc.c
     15shared_C_FILES += $(top_srcdir)/../../shared/bsppost.c
     16shared_C_FILES += $(top_srcdir)/../../shared/main.c
     17shared_C_FILES += $(top_srcdir)/../../shared/sbrk.c
     18shared_C_FILES += $(top_srcdir)/../../shared/gnatinstallhandler.c
     19OBJS += \
     20    $(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT))
     21
     22$(ARCH)/%.$(OBJEXT): $(top_srcdir)/../../shared/%.c $(ARCH)/$(dirstamp)
     23        ${COMPILE} -o $@ -c $<
    2124
    2225$(PGM): $(OBJS)
Note: See TracChangeset for help on using the changeset viewer.