Changeset 4043f42 in rtems
- Timestamp:
- 12/22/03 16:10:00 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 27c06b0
- Parents:
- daa9eb96
- Location:
- c/src/lib/libbsp/powerpc/score603e
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/score603e/ChangeLog
rdaa9eb96 r4043f42 1 2003-12-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * PCI_bus/Makefile.am: Eliminate VPATH. 4 * clock/Makefile.am: Eliminate VPATH. 5 * console/Makefile.am: Eliminate VPATH. 6 * start/Makefile.am: Eliminate VPATH. 7 * startup/Makefile.am: Eliminate VPATH. 8 * timer/Makefile.am: Eliminate VPATH. 9 * tod/Makefile.am: Eliminate VPATH. 10 * vectors/Makefile.am: Eliminate VPATH. 11 1 12 2003-12-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 13 -
c/src/lib/libbsp/powerpc/score603e/PCI_bus/Makefile.am
rdaa9eb96 r4043f42 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/score603e/clock/Makefile.am
rdaa9eb96 r4043f42 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/score603e/console/Makefile.am
rdaa9eb96 r4043f42 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/score603e/start/Makefile.am
rdaa9eb96 r4043f42 4 4 5 5 S_FILES = start.S 6 S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 7 8 OBJS = $(S_O_FILES) 6 OBJS = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 9 7 10 8 include $(top_srcdir)/../../../../automake/compile.am 11 9 include $(top_srcdir)/../../../../automake/lib.am 12 10 include $(top_srcdir)/../../bspstart.am 13 14 #15 # (OPTIONAL) Add local stuff here using +=16 #17 11 18 12 project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) -
c/src/lib/libbsp/powerpc/score603e/startup/Makefile.am
rdaa9eb96 r4043f42 3 3 ## 4 4 5 VPATH = @srcdir@:@srcdir@/../../../shared 5 6 6 7 7 PGM = $(ARCH)/startup.rel … … 13 13 STARTUP_C_FILES = FPGA.c 14 14 15 C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \ 16 setvec.c Hwr_init.c spurious.c genpvec.c $(STARTUP_C_FILES) \ 17 gnatinstallhandler.c 18 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 19 20 OBJS = $(C_O_FILES) 15 C_FILES = bspclean.c bspstart.c \ 16 setvec.c Hwr_init.c spurious.c genpvec.c $(STARTUP_C_FILES) 17 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 21 18 22 19 include $(top_srcdir)/../../../../automake/compile.am 23 20 include $(top_srcdir)/../../../../automake/lib.am 24 21 25 # 26 # (OPTIONAL) Add local stuff here using += 27 # 22 shared_C_FILES = $(top_srcdir)/../../shared/bootcard.c 23 shared_C_FILES += $(top_srcdir)/../../shared/bsplibc.c 24 shared_C_FILES += $(top_srcdir)/../../shared/bsppost.c 25 shared_C_FILES += $(top_srcdir)/../../shared/main.c 26 shared_C_FILES += $(top_srcdir)/../../shared/sbrk.c 27 shared_C_FILES += $(top_srcdir)/../../shared/gnatinstallhandler.c 28 OBJS += $(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT)) 29 30 $(ARCH)/%.$(OBJEXT): $(top_srcdir)/../../shared/%.c $(ARCH)/$(dirstamp) 31 ${COMPILE} -o $@ -c $< 32 28 33 29 34 $(PGM): $(OBJS) … … 34 39 all-local: $(PGM) $(TMPINSTALL_FILES) 35 40 36 EXTRA_DIST = FPGA.c Hwr_init.c bspclean.c bspstart.c genpvec.c linkcmds \ 37 setvec.c spurious.c vmeintr.c 41 EXTRA_DIST = $(C_FILES) linkcmds 38 42 39 43 $(PROJECT_LIB)/$(dirstamp): -
c/src/lib/libbsp/powerpc/score603e/timer/Makefile.am
rdaa9eb96 r4043f42 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/score603e/tod/Makefile.am
rdaa9eb96 r4043f42 25 25 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile 26 26 27 all-local: $( OBJS) $(PGM)27 all-local: $(PGM) 28 28 29 29 .PRECIOUS: $(PGM) -
c/src/lib/libbsp/powerpc/score603e/vectors/Makefile.am
rdaa9eb96 r4043f42 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)
Note: See TracChangeset
for help on using the changeset viewer.