forked from Imagelibrary/rtems
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Add preinstallation dirstamp support. * clock/Makefile.am: Cosmetics. * console/Makefile.am: Cosmetics. * network/Makefile.am: Cosmetics. * startup/Makefile.am: Cosmetics. * timer/Makefile.am: Cosmetics. * wrapup/Makefile.am: Cosmetics.
This commit is contained in:
@@ -1,3 +1,13 @@
|
|||||||
|
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* Makefile.am: Add preinstallation dirstamp support.
|
||||||
|
* clock/Makefile.am: Cosmetics.
|
||||||
|
* console/Makefile.am: Cosmetics.
|
||||||
|
* network/Makefile.am: Cosmetics.
|
||||||
|
* startup/Makefile.am: Cosmetics.
|
||||||
|
* timer/Makefile.am: Cosmetics.
|
||||||
|
* wrapup/Makefile.am: Cosmetics.
|
||||||
|
|
||||||
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* clock/Makefile.am: Remove all-local: $(ARCH).
|
* clock/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
|||||||
@@ -17,12 +17,12 @@ all-local: $(PREINSTALL_FILES)
|
|||||||
|
|
||||||
EXTRA_DIST = times
|
EXTRA_DIST = times
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h
|
$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/coverhd.h
|
||||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/m302_int.h: include/m302_int.h
|
$(PROJECT_INCLUDE)/m302_int.h: include/m302_int.h $(PROJECT_INCLUDE)/$(dirstamp)
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/m302_int.h
|
||||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/m302_int.h
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/m302_int.h
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/subdirs.am
|
include $(top_srcdir)/../../../../automake/subdirs.am
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
PGM = $(ARCH)/clock.rel
|
PGM = $(ARCH)/clock.rel
|
||||||
|
|
||||||
C_FILES = ckinit.c
|
C_FILES = ckinit.c
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
PGM = $(ARCH)/console.rel
|
PGM = $(ARCH)/console.rel
|
||||||
|
|
||||||
C_FILES = console.c
|
C_FILES = console.c
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
PGM = $(ARCH)/network.rel
|
PGM = $(ARCH)/network.rel
|
||||||
|
|
||||||
C_FILES = network.c
|
C_FILES = network.c
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
VPATH = @srcdir@:@srcdir@/../../shared:@srcdir@/../../../shared
|
VPATH = @srcdir@:@srcdir@/../../shared:@srcdir@/../../../shared
|
||||||
|
|
||||||
PGM = $(ARCH)/startup.rel
|
PGM = $(ARCH)/startup.rel
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
PGM = $(ARCH)/timer.rel
|
PGM = $(ARCH)/timer.rel
|
||||||
|
|
||||||
C_FILES = timer.c
|
C_FILES = timer.c
|
||||||
|
|||||||
@@ -10,8 +10,9 @@ endif
|
|||||||
BSP_PIECES = startup clock console timer $(NETWORKING_DRIVER)
|
BSP_PIECES = startup clock console timer $(NETWORKING_DRIVER)
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.$(OBJEXT))) \
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard \
|
||||||
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/*.$(OBJEXT))
|
../$(piece)/$(ARCH)/*.$(OBJEXT))) $(wildcard \
|
||||||
|
../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/*.$(OBJEXT))
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
2003-12-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* Makefile.am: Add preinstallation dirstamp support.
|
||||||
|
* clock/Makefile.am: Cosmetics.
|
||||||
|
* console/Makefile.am: Cosmetics.
|
||||||
|
* network/Makefile.am: Cosmetics.
|
||||||
|
* startup/Makefile.am: Cosmetics.
|
||||||
|
* timer/Makefile.am: Cosmetics.
|
||||||
|
* wrapup/Makefile.am: Cosmetics.
|
||||||
|
|
||||||
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* clock/Makefile.am: Remove all-local: $(ARCH).
|
* clock/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
|||||||
@@ -16,8 +16,8 @@ all-local: $(PREINSTALL_FILES)
|
|||||||
|
|
||||||
EXTRA_DIST = times
|
EXTRA_DIST = times
|
||||||
|
|
||||||
$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h
|
$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/coverhd.h
|
||||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/subdirs.am
|
include $(top_srcdir)/../../../../automake/subdirs.am
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
PGM = $(ARCH)/clock.rel
|
PGM = $(ARCH)/clock.rel
|
||||||
|
|
||||||
C_FILES = clock.c
|
C_FILES = clock.c
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
PGM = $(ARCH)/console.rel
|
PGM = $(ARCH)/console.rel
|
||||||
|
|
||||||
C_FILES = console.c consolereserveresources.c
|
C_FILES = console.c consolereserveresources.c
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
PGM = $(ARCH)/network.rel
|
PGM = $(ARCH)/network.rel
|
||||||
|
|
||||||
C_FILES = network.c
|
C_FILES = network.c
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
VPATH = @srcdir@:@srcdir@/../../shared:@srcdir@/../../../shared:@srcdir@/../../shared/gdbstub::@srcdir@/../../../shared/gdbstub
|
VPATH = @srcdir@:@srcdir@/../../shared:@srcdir@/../../../shared:@srcdir@/../../shared/gdbstub::@srcdir@/../../../shared/gdbstub
|
||||||
|
|
||||||
PGM = $(ARCH)/startup.rel
|
PGM = $(ARCH)/startup.rel
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
PGM = $(ARCH)/timer.rel
|
PGM = $(ARCH)/timer.rel
|
||||||
|
|
||||||
C_FILES = timer.c
|
C_FILES = timer.c
|
||||||
|
|||||||
@@ -10,9 +10,11 @@ endif
|
|||||||
BSP_PIECES = startup clock console timer $(NETWORKING_DRIVER)
|
BSP_PIECES = startup clock console timer $(NETWORKING_DRIVER)
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.$(OBJEXT))) \
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard \
|
||||||
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/*.$(OBJEXT)) \
|
../$(piece)/$(ARCH)/*.$(OBJEXT))) $(wildcard \
|
||||||
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
|
../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/*.$(OBJEXT)) \
|
||||||
|
$(wildcard \
|
||||||
|
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
|
|||||||
Reference in New Issue
Block a user