Changeset d48576d in rtems
- Timestamp:
- 12/22/03 16:09:26 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 926ec3b2
- Parents:
- d0e77c7
- Location:
- c/src/lib/libbsp/powerpc/helas403
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/helas403/ChangeLog
rd0e77c7 rd48576d 1 2003-12-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * dlentry/Makefile.am: Eliminate VPATH. 4 * flashentry/Makefile.am: Eliminate VPATH. 5 * startup/Makefile.am: Eliminate VPATH. 6 1 7 2003-12-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/lib/libbsp/powerpc/helas403/dlentry/Makefile.am
rd0e77c7 rd48576d 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/helas403/flashentry/Makefile.am
rd0e77c7 rd48576d 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/helas403/startup/Makefile.am
rd0e77c7 rd48576d 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 11 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 12 13 OBJS = $(C_O_FILES) 7 C_FILES = bspclean.c bspstart.c setvec.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/bsplibc.c 15 shared_C_FILES += $(top_srcdir)/../../shared/bsppost.c 16 shared_C_FILES += $(top_srcdir)/../../shared/main.c 17 shared_C_FILES += $(top_srcdir)/../../shared/sbrk.c 18 shared_C_FILES += $(top_srcdir)/../../shared/gnatinstallhandler.c 19 OBJS += \ 20 $(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT)) 21 22 $(ARCH)/%.$(OBJEXT): $(top_srcdir)/../../shared/%.c $(ARCH)/$(dirstamp) 23 ${COMPILE} -o $@ -c $< 21 24 22 25 $(PGM): $(OBJS)
Note: See TracChangeset
for help on using the changeset viewer.