Changeset 54a1f5dd in rtems


Ignore:
Timestamp:
12/10/03 12:36:55 (19 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
15d7f766
Parents:
332a298
Message:

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

  • console/Makefile.am: Misc cleanups and fixes.
  • i2c/Makefile.am: Misc cleanups and fixes.
  • nvram/Makefile.am: Misc cleanups and fixes.
  • start/Makefile.am: Misc cleanups and fixes.
  • startup/Makefile.am: Misc cleanups and fixes.
  • tod/Makefile.am: Misc cleanups and fixes.
  • wrapup/Makefile.am: Misc cleanups and fixes.
Location:
c/src/lib/libbsp/m68k/mcf5206elite
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/m68k/mcf5206elite/ChangeLog

    r332a298 r54a1f5dd  
     12003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * console/Makefile.am: Misc cleanups and fixes.
     4        * i2c/Makefile.am: Misc cleanups and fixes.
     5        * nvram/Makefile.am: Misc cleanups and fixes.
     6        * start/Makefile.am: Misc cleanups and fixes.
     7        * startup/Makefile.am: Misc cleanups and fixes.
     8        * tod/Makefile.am: Misc cleanups and fixes.
     9        * wrapup/Makefile.am: Misc cleanups and fixes.
     10
    1112003-12-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    212
  • c/src/lib/libbsp/m68k/mcf5206elite/console/Makefile.am

    r332a298 r54a1f5dd  
    2222# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    2323
    24 all: $(OBJS) $(PGM)
    25 
     24all-local: $(OBJS) $(PGM)
    2625.PRECIOUS: $(PGM)
    2726
  • c/src/lib/libbsp/m68k/mcf5206elite/i2c/Makefile.am

    r332a298 r54a1f5dd  
    2222# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    2323
    24 all: $(OBJS) $(PGM)
    25 
     24all-local: $(OBJS) $(PGM)
    2625.PRECIOUS: $(PGM)
    2726
  • c/src/lib/libbsp/m68k/mcf5206elite/nvram/Makefile.am

    r332a298 r54a1f5dd  
    2222# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    2323
    24 all: $(OBJS) $(PGM)
    25 
     24all-local: $(OBJS) $(PGM)
    2625.PRECIOUS: $(PGM)
    2726
  • c/src/lib/libbsp/m68k/mcf5206elite/start/Makefile.am

    r332a298 r54a1f5dd  
    1010include $(top_srcdir)/../../../../automake/compile.am
    1111include $(top_srcdir)/../../../../automake/lib.am
     12include $(top_srcdir)/../../bspstart.am
    1213
    1314#
     
    1516#
    1617
    17 install-data-local: $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
    18         @$(mkinstalldirs) $(DESTDIR)$(bsplibdir)
    19         $(INSTALL_DATA) $< $(DESTDIR)$(bsplibdir)
     18project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
    2019
    21 $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
    22         $(INSTALL_DATA) $< $@
    23 
    24 TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
    25 
    26 all-local: $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
    27 
    28 .PRECIOUS: $(ARCH)/start.$(OBJEXT)
     20all-local: $(TMPINSTALL_FILES)
    2921
    3022EXTRA_DIST = start.S
    3123
     24${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) ${PROJECT_RELEASE}/lib/$(dirstamp)
     25        $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
     26TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
     27
    3228include $(top_srcdir)/../../../../automake/local.am
  • c/src/lib/libbsp/m68k/mcf5206elite/startup/Makefile.am

    r332a298 r54a1f5dd  
    2323        $(make-rel)
    2424
    25 $(PROJECT_RELEASE)/lib/gdbinit: gdbinit
    26         $(INSTALL_DATA) $< $@
    27 
    28 bsplib_DATA = linkcmds gdbinit linkcmds.flash
    29 
    30 $(PROJECT_RELEASE)/lib/linkcmds: linkcmds
    31         $(INSTALL_DATA) $< $@
    32 
    33 $(PROJECT_RELEASE)/lib/linkcmds.flash: linkcmds.flash
    34         $(INSTALL_DATA) $< $@
     25project_lib_DATA = linkcmds gdbinit linkcmds.flash
    3526
    3627# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    37 TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds \
    38     $(PROJECT_RELEASE)/lib/linkcmds.flash $(PROJECT_RELEASE)/lib/gdbinit
    3928
    40 all: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
    41 
    42 .PRECIOUS: $(PGM)
     29all-local: $(PGM) $(TMPINSTALL_FILES)
    4330
    4431EXTRA_DIST = bspclean.c bspstart.c init5206e.c linkcmds linkcmds.flash \
    4532    gdbinit
    4633
     34${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
     35        $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
     36TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds
     37
     38${PROJECT_RELEASE}/lib/gdbinit: gdbinit ${PROJECT_RELEASE}/lib/$(dirstamp)
     39        $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/gdbinit
     40TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/gdbinit
     41
     42${PROJECT_RELEASE}/lib/linkcmds.flash: linkcmds.flash ${PROJECT_RELEASE}/lib/$(dirstamp)
     43        $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds.flash
     44TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds.flash
     45
    4746include $(top_srcdir)/../../../../automake/local.am
  • c/src/lib/libbsp/m68k/mcf5206elite/tod/Makefile.am

    r332a298 r54a1f5dd  
    2424# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
    2525
    26 all: $(OBJS) $(PGM)
    27 
     26all-local: $(OBJS) $(PGM)
    2827.PRECIOUS: $(PGM)
    2928
  • c/src/lib/libbsp/m68k/mcf5206elite/wrapup/Makefile.am

    r332a298 r54a1f5dd  
    88
    99# bummer; have to use $foreach since % pattern subst rules only replace 1x
    10 OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard \
    11     ../$(piece)/$(ARCH)/*.$(OBJEXT))) $(wildcard \
     10OBJS = $(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT)) \
     11    $(wildcard \
    1212    ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/*.$(OBJEXT)) \
    1313    $(foreach piece, $(CPU_PIECES), \
     
    2727        $(make-library)
    2828
    29 all: $(OBJS) $(LIB) $(TMPINSTALL_FILES)
     29all-local: $(LIB)
    3030
    3131include $(top_srcdir)/../../../../automake/local.am
Note: See TracChangeset for help on using the changeset viewer.