Changeset 1a819ee5 in rtems


Ignore:
Timestamp:
12/30/03 02:15:25 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5a30032
Parents:
88272b70
Message:

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

  • console/Makefile.am: Eliminate *.rel. Use $(top_srcdir)/../../shared instead of ../../../shared.
  • startup/Makefile.am: Cosmetics.
Location:
c/src/lib/libbsp/powerpc/psim
Files:
3 edited

Legend:

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

    r88272b70 r1a819ee5  
     12003-12-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * console/Makefile.am: Eliminate *.rel.
     4        Use $(top_srcdir)/../../shared instead of ../../../shared.
     5        * startup/Makefile.am: Cosmetics.
     6
    172003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/lib/libbsp/powerpc/psim/console/Makefile.am

    r88272b70 r1a819ee5  
    33##
    44
    5 PGM = $(ARCH)/console.rel
     5include $(top_srcdir)/../../../../automake/compile.am
     6include $(top_srcdir)/../../../../automake/lib.am
    67
    78C_FILES = console-io.c
    89OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
    910
    10 shared_C_FILES = ../../../shared/console-polled.c
    11 OBJS += $(shared_C_FILES:../../../shared/%.c=$(ARCH)/%.$(OBJEXT))
     11shared_C_FILES = $(top_srcdir)/../../shared/console-polled.c
     12OBJS += \
     13    $(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT))
    1214
    1315S_FILES = consupp.S
    1416OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
    1517
    16 include $(top_srcdir)/../../../../automake/compile.am
    17 include $(top_srcdir)/../../../../automake/lib.am
    18 
    19 $(ARCH)/%$(LIB_VARIANT).$(OBJEXT): ../../../shared/%.c $(ARCH)/$(dirstamp)
     18$(ARCH)/%.$(OBJEXT): $(top_srcdir)/../../shared/%.c $(ARCH)/$(dirstamp)
    2019        ${COMPILE} -o $@ -c $<
    2120
    22 $(PGM): $(OBJS)
    23         $(make-rel)
    24 
    25 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    26 
    27 all-local: $(PGM)
     21noinst_DATA = $(OBJS)
    2822
    2923EXTRA_DIST = $(C_FILES) $(S_FILES)
  • c/src/lib/libbsp/powerpc/psim/startup/Makefile.am

    r88272b70 r1a819ee5  
    22## $Id$
    33##
    4 
    5 
    64
    75PGM = $(ARCH)/startup.rel
     
    1917shared_C_FILES += $(top_srcdir)/../../shared/sbrk.c
    2018shared_C_FILES += $(top_srcdir)/../../shared/gnatinstallhandler.c
    21 OBJS += $(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT))
     19OBJS += \
     20    $(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT))
    2221
    2322$(ARCH)/%.$(OBJEXT): $(top_srcdir)/../../shared/%.c $(ARCH)/$(dirstamp)
    2423        ${COMPILE} -o $@ -c $<
    25 
    2624
    2725$(PGM): $(OBJS)
Note: See TracChangeset for help on using the changeset viewer.