Changeset 0e2094d in rtems
- Timestamp:
- 02/09/04 14:45:26 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- cd24a22b
- Parents:
- 439ed0c
- Location:
- c/src/lib/libbsp/powerpc/mpc8260ads
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/mpc8260ads/ChangeLog
r439ed0c r0e2094d 1 2004-02-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * wrapup/Makefile.am: Convert to automake-building rules. 4 1 5 2004-01-31 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 6 3 * Makefile.am: Merge-in clock/ .cvsignore, console/.cvsignore,4 irq/ .cvsignore, network/.cvsignore, startup/.cvsignore,5 vectors/ .cvsignore. Use automake compilation rules.6 * clock/ .cvsignore, console/.cvsignore, irq/.cvsignore,7 network/ .cvsignore, startup/.cvsignore, vectors/.cvsignore: Remove.7 * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am, 8 irq/Makefile.am, network/Makefile.am, startup/Makefile.am, 9 vectors/Makefile.am. Use automake compilation rules. 10 * clock/Makefile.am, console/Makefile.am, irq/Makefile.am, 11 network/Makefile.am, startup/Makefile.am, vectors/Makefile.am: Remove. 8 12 * configure.ac: Reflect changes above. 9 13 * wrapup/Makefile: Reflect changes above. -
c/src/lib/libbsp/powerpc/mpc8260ads/wrapup/Makefile.am
r439ed0c r0e2094d 3 3 ## 4 4 5 OBJS = ../pclock$(LIB_VARIANT).rel ../irq$(LIB_VARIANT).rel \ 6 ../startup$(LIB_VARIANT).rel \ 7 ../console$(LIB_VARIANT).rel ../vectors$(LIB_VARIANT).rel 5 include $(top_srcdir)/../../../../automake/compile.am 8 6 7 EXTRA_LIBRARIES = ../libbsp.a 8 CLEANFILES = ../libbsp.a 9 ___libbsp_a_SOURCES = 10 ___libbsp_a_LIBADD = ../pclock$(LIB_VARIANT).rel ../irq$(LIB_VARIANT).rel \ 11 ../startup$(LIB_VARIANT).rel ../console$(LIB_VARIANT).rel \ 12 ../vectors$(LIB_VARIANT).rel 9 13 if HAS_NETWORKING 10 OBJS+= ../network$(LIB_VARIANT).rel14 ___libbsp_a_LIBADD += ../network$(LIB_VARIANT).rel 11 15 endif 12 13 # bummer; have to use $foreach since % pattern subst rules only replace 1x 14 OBJS += ../../../../libcpu/powerpc/shared/cpuIdent$(LIB_VARIANT).rel \ 16 ___libbsp_a_LIBADD += \ 17 ../../../../libcpu/powerpc/shared/cpuIdent$(LIB_VARIANT).rel \ 15 18 ../../../../libcpu/powerpc/shared/cache$(LIB_VARIANT).rel \ 16 19 ../@exceptions@/rtems-cpu$(LIB_VARIANT).rel \ … … 22 25 ../../../../libcpu/powerpc/mpc8260/exceptions$(LIB_VARIANT).rel 23 26 24 include $(top_srcdir)/../../../../automake/compile.am 25 include $(top_srcdir)/../../../../automake/lib.am 27 EXTRA_LIBRARIES += ../libbsp_g.a 28 CLEANFILES += ../libbsp_g.a 29 ___libbsp_g_a_SOURCES = $(___libbsp_a_SOURCES) 30 ___libbsp_g_a_LIBADD = $(___libbsp_a_LIBADD) 26 31 27 $(ARCH)/libbsp.a: $(OBJS) 28 $(make-library) 29 30 noinst_DATA = $(ARCH)/libbsp.a 32 noinst_DATA = ../libbsp$(LIB_VARIANT).a 31 33 32 34 include $(top_srcdir)/../../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.