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

* Makefile.am: Add dirstamp support to preinstallation.
	* clock/Makefile.am: Cosmetics.
	* console/Makefile.am: Cosmetics.
	* gnatsupp/Makefile.am: Cosmetics.
	* leon_open_eth/Makefile.am: Correct paths to automake/*.am..
	* startup/Makefile.am: Cosmetics.
	* timer/Makefile.am: Cosmetics.
	* wrapup/Makefile.am: Cosmetics.

	PR 538/bsps:
	* wrapup/Makefile.am: Add leon_open_eth.rel
This commit is contained in:
Ralf Corsepius
2003-12-02 14:59:50 +00:00
parent e475efe76b
commit 6fd43a1b79
9 changed files with 25 additions and 16 deletions

View File

@@ -1,3 +1,17 @@
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Add dirstamp support to preinstallation.
* clock/Makefile.am: Cosmetics.
* console/Makefile.am: Cosmetics.
* gnatsupp/Makefile.am: Cosmetics.
* leon_open_eth/Makefile.am: Correct paths to automake/*.am..
* startup/Makefile.am: Cosmetics.
* timer/Makefile.am: Cosmetics.
* wrapup/Makefile.am: Cosmetics.
PR 538/bsps:
* wrapup/Makefile.am: Add leon_open_eth.rel
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* clock/Makefile.am: Remove all-local: $(ARCH).

View File

@@ -18,12 +18,12 @@ all-local: $(PREINSTALL_FILES)
EXTRA_DIST = times
$(PROJECT_INCLUDE)/leon.h: include/leon.h
$(INSTALL_DATA) $< $@
$(PROJECT_INCLUDE)/leon.h: include/leon.h $(PROJECT_INCLUDE)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/leon.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/leon.h
$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h
$(INSTALL_DATA) $< $@
$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/coverhd.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
include $(top_srcdir)/../../../../automake/subdirs.am

View File

@@ -2,7 +2,6 @@
## $Id$
##
PGM = $(ARCH)/clock.rel
C_FILES = ckinit.c

View File

@@ -2,7 +2,6 @@
## $Id$
##
PGM = $(ARCH)/console.rel
C_FILES = console.c consolereserveresources.c debugputs.c

View File

@@ -2,7 +2,6 @@
## $Id$
##
VPATH = @srcdir@:@srcdir@/../../shared:@srcdir@/../../../shared
PGM = $(ARCH)/gnatsupp.rel

View File

@@ -2,7 +2,6 @@
## Makefile.am,v 1.5 2002/12/14 08:17:45 ralf Exp
##
PGM = $(ARCH)/leon_open_eth.rel
C_FILES = leon_open_eth.c
@@ -10,8 +9,8 @@ C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
OBJS = $(C_O_FILES)
include $(top_srcdir)/../../../../../../automake/compile.am
include $(top_srcdir)/../../../../../../automake/lib.am
include $(top_srcdir)/../../../../automake/compile.am
include $(top_srcdir)/../../../../automake/lib.am
#
# (OPTIONAL) Add local stuff here using +=
@@ -32,4 +31,4 @@ endif
EXTRA_DIST = leon_open_eth.c
include $(top_srcdir)/../../../../../../automake/local.am
include $(top_srcdir)/../../../../automake/local.am

View File

@@ -2,7 +2,6 @@
## $Id$
##
VPATH = @srcdir@:@srcdir@/../../shared:@srcdir@/../../../shared
PGM = $(ARCH)/startup.rel

View File

@@ -2,7 +2,6 @@
## $Id$
##
PGM = $(ARCH)/timer.rel
C_FILES = timer.c

View File

@@ -7,13 +7,14 @@ if HAS_NETWORKING
NETWORKING_DRIVER = leon_open_eth
endif
BSP_PIECES = startup console clock timer gnatsupp $(NETWORK)
BSP_PIECES = startup console clock timer gnatsupp $(NETWORKING_DRIVER)
# pieces to pick up out of libcpu/sparc
CPU_PIECES = cache reg_win syscall
# bummer; have to use $foreach since % pattern subst rules only replace 1x
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.$(OBJEXT))) \
$(foreach piece, $(CPU_PIECES), ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/*.$(OBJEXT))
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard \
../$(piece)/$(ARCH)/*.$(OBJEXT))) $(foreach piece, $(CPU_PIECES), \
../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/*.$(OBJEXT))
LIB = $(ARCH)/libbsp.a
include $(top_srcdir)/../../../../automake/compile.am