2003-12-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* clock/Makefile.am: Eliminate VPATH.
	* console/Makefile.am: Eliminate VPATH.
	* ide/Makefile.am: Eliminate VPATH.
	* irq/Makefile.am: Eliminate VPATH.
	* network/Makefile.am: Eliminate VPATH.
	* startup/Makefile.am: Eliminate VPATH.
This commit is contained in:
Ralf Corsepius
2003-12-22 16:09:32 +00:00
parent d48576d81b
commit 926ec3b285
7 changed files with 35 additions and 52 deletions

View File

@@ -1,3 +1,12 @@
2003-12-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* clock/Makefile.am: Eliminate VPATH.
* console/Makefile.am: Eliminate VPATH.
* ide/Makefile.am: Eliminate VPATH.
* irq/Makefile.am: Eliminate VPATH.
* network/Makefile.am: Eliminate VPATH.
* startup/Makefile.am: Eliminate VPATH.
2003-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 545/bsps

View File

@@ -2,22 +2,14 @@
## $Id$
##
VPATH = @srcdir@:@srcdir@/../../shared/clock
C_FILES = p_clock.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include $(top_srcdir)/../../../../automake/compile.am
include $(top_srcdir)/../../../../automake/lib.am
#
# (OPTIONAL) Add local stuff here using +=
#
# the .o files built here will be put into libbsp.a by ../wrapup/Makefile
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
all-local: $(OBJS)
noinst_DATA = $(OBJS)
include $(top_srcdir)/../../../../automake/local.am

View File

@@ -21,7 +21,7 @@ $(PGM): $(OBJS)
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
all-local: $(OBJS) $(PGM)
all-local: $(PGM)
.PRECIOUS: $(PGM)

View File

@@ -2,29 +2,14 @@
## Makefile.am,v 1.5 2002/08/11 06:59:03 ralf Exp
##
PGM = # $(ARCH)/console.rel
C_FILES = idecfg.c pcmcia_ide.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include $(top_srcdir)/../../../../automake/compile.am
include $(top_srcdir)/../../../../automake/lib.am
#
# (OPTIONAL) Add local stuff here using +=
#
$(PGM): $(OBJS)
$(make-rel)
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
all-local: $(OBJS) $(PGM)
.PRECIOUS: $(PGM)
EXTRA_DIST = idecfg.c
noinst_DATA = $(OBJS)
include $(top_srcdir)/../../../../automake/local.am

View File

@@ -14,16 +14,9 @@ OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
include $(top_srcdir)/../../../../automake/compile.am
include $(top_srcdir)/../../../../automake/lib.am
#
# (OPTIONAL) Add local stuff here using +=
#
noinst_DATA = $(OBJS)
$(PGM): $(OBJS)
$(make-rel)
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
all-local: $(PREINSTALL_FILES) $(OBJS) $(PGM)
all-local: $(PREINSTALL_FILES)
EXTRA_DIST = irq.c irq_asm.S irq_init.c

View File

@@ -24,7 +24,7 @@ $(PGM): $(OBJS)
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
if HAS_NETWORKING
all-local: $(OBJS) $(PGM)
all-local: $(PGM)
endif
.PRECIOUS: $(PGM)

View File

@@ -2,25 +2,29 @@
## $Id$
##
VPATH = @srcdir@:@srcdir@/../../../shared
PGM = $(ARCH)/startup.rel
C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c imbx8xx.c \
main.c mmutlbtab.c sbrk.c gnatinstallhandler.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
C_FILES = bspstart.c imbx8xx.c mmutlbtab.c
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
S_FILES = start.s
S_O_FILES = $(S_FILES:%.s=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES) $(S_O_FILES)
S_FILES = start.S
OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
include $(top_srcdir)/../../../../automake/compile.am
include $(top_srcdir)/../../../../automake/lib.am
#
# (OPTIONAL) Add local stuff here using +=
#
shared_C_FILES = $(top_srcdir)/../../shared/bootcard.c
shared_C_FILES += $(top_srcdir)/../../shared/bspclean.c
shared_C_FILES += $(top_srcdir)/../../shared/bsplibc.c
shared_C_FILES += $(top_srcdir)/../../shared/bsppost.c
shared_C_FILES += $(top_srcdir)/../../shared/main.c
shared_C_FILES += $(top_srcdir)/../../shared/sbrk.c
shared_C_FILES += $(top_srcdir)/../../shared/gnatinstallhandler.c
OBJS += \
$(shared_C_FILES:$(top_srcdir)/../../shared/%.c=$(ARCH)/%.$(OBJEXT))
$(ARCH)/%.$(OBJEXT): $(top_srcdir)/../../shared/%.c $(ARCH)/$(dirstamp)
${COMPILE} -o $@ -c $<
$(PGM): $(OBJS)
$(make-rel)
@@ -31,7 +35,7 @@ project_lib_DATA = linkcmds
all-local: $(PGM) $(TMPINSTALL_FILES)
EXTRA_DIST = bspstart.c imbx8xx.c linkcmds mmutlbtab.c setvec.c
EXTRA_DIST = linkcmds $(C_FILES)
$(PROJECT_LIB)/$(dirstamp):
@$(mkdir_p) $(PROJECT_LIB)