forked from Imagelibrary/rtems
2003-12-02 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-02 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).
|
||||||
|
|||||||
@@ -14,8 +14,8 @@ include_HEADERS += include/coverhd.h
|
|||||||
|
|
||||||
all-local: $(PREINSTALL_FILES)
|
all-local: $(PREINSTALL_FILES)
|
||||||
|
|
||||||
$(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 = ckinit.c
|
C_FILES = ckinit.c
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
VPATH = @srcdir@:@srcdir@/../../shared/io
|
VPATH = @srcdir@:@srcdir@/../../shared/io
|
||||||
|
|
||||||
PGM = $(ARCH)/console.rel
|
PGM = $(ARCH)/console.rel
|
||||||
|
|||||||
@@ -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/comm:@srcdir@/../../shared/irq:@srcdir@/../../shared/io
|
VPATH = @srcdir@:@srcdir@/../../../shared:@srcdir@/../../shared/comm:@srcdir@/../../shared/irq:@srcdir@/../../shared/io
|
||||||
|
|
||||||
PGM = $(ARCH)/startup.rel
|
PGM = $(ARCH)/startup.rel
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
## $Id$
|
## $Id$
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
PGM = $(ARCH)/timer.rel
|
PGM = $(ARCH)/timer.rel
|
||||||
|
|
||||||
C_FILES = timer.c
|
C_FILES = timer.c
|
||||||
S_FILES = timerisr.S
|
S_FILES = timerisr.S
|
||||||
timer_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
|
timer_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) \
|
||||||
|
$(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/compile.am
|
include $(top_srcdir)/../../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../../automake/lib.am
|
include $(top_srcdir)/../../../../automake/lib.am
|
||||||
|
|||||||
@@ -11,8 +11,9 @@ endif
|
|||||||
BSP_FILES = startup clock console timer $(NETWORK)
|
BSP_FILES = startup clock console timer $(NETWORK)
|
||||||
|
|
||||||
# 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_FILES), $(wildcard ../$(piece)/$(ARCH)/*.$(OBJEXT))) \
|
OBJS = $(foreach piece, $(BSP_FILES), $(wildcard \
|
||||||
$(wildcard ../../../../libcpu/i386/$(ARCH)/*.$(OBJEXT))
|
../$(piece)/$(ARCH)/*.$(OBJEXT))) $(wildcard \
|
||||||
|
../../../../libcpu/i386/$(ARCH)/*.$(OBJEXT))
|
||||||
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