Changeset e9b6f41 in rtems
- Timestamp:
- 12/22/03 16:09:45 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ae3ef43d
- Parents:
- c659294
- Location:
- c/src/lib/libbsp/powerpc/mpc8260ads
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/mpc8260ads/ChangeLog
rc659294 re9b6f41 1 2003-12-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * clock/Makefile.am: Eliminate VPATH. 4 * console/Makefile.am: Eliminate VPATH. 5 * irq/Makefile.am: Eliminate VPATH. 6 * network/Makefile.am: Eliminate VPATH. 7 * startup/Makefile.am: Eliminate VPATH. 8 1 9 2003-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/lib/libbsp/powerpc/mpc8260ads/clock/Makefile.am
rc659294 re9b6f41 3 3 ## 4 4 5 VPATH = @srcdir@:@srcdir@/../../shared/clock6 7 5 C_FILES = p_clock.c 8 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 9 10 OBJS = $(C_O_FILES) 6 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 11 7 12 8 include $(top_srcdir)/../../../../automake/compile.am 13 9 include $(top_srcdir)/../../../../automake/lib.am 14 10 15 # 16 # (OPTIONAL) Add local stuff here using += 17 # 11 # the .o files built here will be put into libbsp.a by ../wrapup/Makefile 18 12 19 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile 20 21 all-local: $(OBJS) 13 noinst_DATA = $(OBJS) 22 14 23 15 include $(top_srcdir)/../../../../automake/local.am -
c/src/lib/libbsp/powerpc/mpc8260ads/console/Makefile.am
rc659294 re9b6f41 22 22 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile 23 23 24 all-local: $( OBJS) $(PGM)24 all-local: $(PGM) 25 25 26 26 .PRECIOUS: $(PGM) -
c/src/lib/libbsp/powerpc/mpc8260ads/irq/Makefile.am
rc659294 re9b6f41 16 16 include $(top_srcdir)/../../../../automake/lib.am 17 17 18 # 19 # (OPTIONAL) Add local stuff here using += 20 # 18 noinst_DATA = $(OBJS) 21 19 22 $(PGM): $(OBJS) 23 $(make-rel) 20 # the .o files built here will be put into libbsp.a by ../wrapup/Makefile 24 21 25 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile 26 27 all-local: $(PREINSTALL_FILES) $(OBJS) $(PGM) 22 all-local: $(PREINSTALL_FILES) 28 23 29 24 EXTRA_DIST = irq.c irq.h irq_asm.S irq_init.c -
c/src/lib/libbsp/powerpc/mpc8260ads/network/Makefile.am
rc659294 re9b6f41 25 25 26 26 if HAS_NETWORKING 27 all-local: $( OBJS) $(PGM)27 all-local: $(PGM) 28 28 endif 29 29 -
c/src/lib/libbsp/powerpc/mpc8260ads/startup/Makefile.am
rc659294 re9b6f41 3 3 ## 4 4 5 VPATH = @srcdir@:@srcdir@/../../../shared6 7 5 PGM = $(ARCH)/startup.rel 8 6 9 C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \ 10 setvec.c gnatinstallhandler.c cpuinit.c 11 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 12 13 OBJS = $(C_O_FILES) 7 C_FILES = bspstart.c cpuinit.c 8 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 14 9 15 10 include $(top_srcdir)/../../../../automake/compile.am 16 11 include $(top_srcdir)/../../../../automake/lib.am 17 12 18 # 19 # (OPTIONAL) Add local stuff here using += 20 # 13 shared_C_FILES = $(top_srcdir)/../../shared/bootcard.c 14 shared_C_FILES += $(top_srcdir)/../../shared/bspclean.c 15 shared_C_FILES += $(top_srcdir)/../../shared/bsplibc.c 16 shared_C_FILES += $(top_srcdir)/../../shared/bsppost.c 17 shared_C_FILES += $(top_srcdir)/../../shared/main.c 18 shared_C_FILES += $(top_srcdir)/../../shared/sbrk.c 19 shared_C_FILES += $(top_srcdir)/../../shared/gnatinstallhandler.c 20 OBJS += \ 21 $(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT)) 22 23 $(ARCH)/%.$(OBJEXT): $(top_srcdir)/../../shared/%.c $(ARCH)/$(dirstamp) 24 ${COMPILE} -o $@ -c $< 21 25 22 26 $(PGM): $(OBJS) … … 29 33 all-local: $(PGM) $(TMPINSTALL_FILES) 30 34 31 EXTRA_DIST = bspstart.c linkcmds setvec.c35 EXTRA_DIST = linkcmds $(C_FILES) 32 36 33 37 $(PROJECT_LIB)/$(dirstamp):
Note: See TracChangeset
for help on using the changeset viewer.