Changeset daa9eb96 in rtems
- Timestamp:
- 12/22/03 16:09:55 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4043f42
- Parents:
- ae3ef43d
- Location:
- c/src/lib/libbsp/powerpc/psim
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/psim/ChangeLog
rae3ef43d rdaa9eb96 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 * shmsupp/Makefile.am: Eliminate VPATH. 6 * startup/Makefile.am: Eliminate VPATH. 7 * timer/Makefile.am: Eliminate VPATH. 8 * vectors/Makefile.am: Eliminate VPATH. 9 1 10 2003-12-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 11 -
c/src/lib/libbsp/powerpc/psim/clock/Makefile.am
rae3ef43d rdaa9eb96 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/psim/console/Makefile.am
rae3ef43d rdaa9eb96 3 3 ## 4 4 5 VPATH = @srcdir@:@srcdir@/../../../shared6 7 5 PGM = $(ARCH)/console.rel 8 6 9 C_FILES = console-io.c console-polled.c 10 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 7 C_FILES = console-io.c 8 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 9 10 shared_C_FILES = ../../../shared/console-polled.c 11 OBJS += $(shared_C_FILES:../../../shared/%.c=$(ARCH)/%.$(OBJEXT)) 11 12 12 13 S_FILES = consupp.S 13 S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 14 15 OBJS = $(C_O_FILES) $(S_O_FILES) 14 OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT)) 16 15 17 16 include $(top_srcdir)/../../../../automake/compile.am 18 17 include $(top_srcdir)/../../../../automake/lib.am 19 18 20 # 21 # (OPTIONAL) Add local stuff here using += 22 # 19 $(ARCH)/%$(LIB_VARIANT).$(OBJEXT): ../../../shared/%.c $(ARCH)/$(dirstamp) 20 ${COMPILE} -o $@ -c $< 23 21 24 22 $(PGM): $(OBJS) … … 27 25 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile 28 26 29 all-local: $( OBJS) $(PGM)27 all-local: $(PGM) 30 28 31 .PRECIOUS: $(PGM) 32 33 EXTRA_DIST = console-io.c consupp.S 29 EXTRA_DIST = $(C_FILES) $(S_FILES) 34 30 35 31 include $(top_srcdir)/../../../../automake/local.am -
c/src/lib/libbsp/powerpc/psim/shmsupp/Makefile.am
rae3ef43d rdaa9eb96 23 23 24 24 if HAS_MP 25 all-local: $( OBJS) $(PGM)25 all-local: $(PGM) 26 26 endif 27 27 -
c/src/lib/libbsp/powerpc/psim/startup/Makefile.am
rae3ef43d rdaa9eb96 3 3 ## 4 4 5 VPATH = @srcdir@:@srcdir@/../../../shared 5 6 6 7 7 PGM = $(ARCH)/startup.rel 8 8 9 C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c main.c sbrk.c \ 10 setvec.c gnatinstallhandler.c 11 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 12 13 OBJS = $(C_O_FILES) 9 C_FILES = bspclean.c bspstart.c setvec.c 10 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 14 11 15 12 include $(top_srcdir)/../../../../automake/compile.am 16 13 include $(top_srcdir)/../../../../automake/lib.am 17 14 18 # 19 # (OPTIONAL) Add local stuff here using += 20 # 15 shared_C_FILES = $(top_srcdir)/../../shared/bootcard.c 16 shared_C_FILES += $(top_srcdir)/../../shared/bsplibc.c 17 shared_C_FILES += $(top_srcdir)/../../shared/bsppost.c 18 shared_C_FILES += $(top_srcdir)/../../shared/main.c 19 shared_C_FILES += $(top_srcdir)/../../shared/sbrk.c 20 shared_C_FILES += $(top_srcdir)/../../shared/gnatinstallhandler.c 21 OBJS += $(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT)) 22 23 $(ARCH)/%.$(OBJEXT): $(top_srcdir)/../../shared/%.c $(ARCH)/$(dirstamp) 24 ${COMPILE} -o $@ -c $< 25 21 26 22 27 $(PGM): $(OBJS) -
c/src/lib/libbsp/powerpc/psim/timer/Makefile.am
rae3ef43d rdaa9eb96 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/psim/vectors/Makefile.am
rae3ef43d rdaa9eb96 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.