2002-07-24 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* include/Makefile.am: Fix preinstallation.
	* bootloader: Eliminate $(INCLUDES).
This commit is contained in:
Ralf Corsepius
2002-07-24 10:13:10 +00:00
parent 323845bd67
commit 115a390f61
3 changed files with 20 additions and 10 deletions

View File

@@ -1,3 +1,8 @@
2002-07-24 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am: Fix preinstallation.
* bootloader: Eliminate $(INCLUDES).
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* start/Makefile.am: Eliminate PGM.

View File

@@ -30,7 +30,7 @@ AM_CFLAGS = \
-msoft-float -mstrict-align -fno-builtin -Wall -mmultiple \
-mstring -O2 -fomit-frame-pointer -ffixed-r13 -mno-sdata \
$(CPU_CFLAGS)
AM_CCASFLAGS = $(INCLUDES) $(AM_CPPFLAGS) \
AM_CCASFLAGS = $(AM_CPPFLAGS) \
$(GCC_SPECS) -specs bsp_specs -qrtems -mrelocatable \
-DASM $(CPU_CFLAGS)

View File

@@ -2,13 +2,13 @@
## $Id$
##
include_HEADERS = bspopts.h
H_FILES = ../../shared/include/nvram.h ../../shared/include/bsp.h \
include_HEADERS += ../../shared/include/nvram.h ../../shared/include/bsp.h \
../../../shared/include/coverhd.h
BSP_H_FILES = ../../shared/console/consoleIo.h ../../shared/console/uart.h \
include_bspdir = $(includedir)/bsp
include_bsp_HEADERS = ../../shared/console/consoleIo.h ../../shared/console/uart.h \
../../shared/irq/irq.h ../../shared/motorola/motorola.h
$(PROJECT_INCLUDE):
@@ -41,12 +41,17 @@ $(PROJECT_INCLUDE)/bsp/irq.h: ../../shared/irq/irq.h
$(PROJECT_INCLUDE)/bsp/motorola.h: ../../shared/motorola/motorola.h
$(INSTALL_DATA) $< $@
TMPINSTALL_FILES = $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/bsp \
$(PROJECT_INCLUDE)/nvram.h $(PROJECT_INCLUDE)/bsp.h \
$(PROJECT_INCLUDE)/coverhd.h $(PROJECT_INCLUDE)/bsp/consoleIo.h \
$(PROJECT_INCLUDE)/bsp/uart.h $(PROJECT_INCLUDE)/bsp/irq.h \
$(PROJECT_INCLUDE)/bsp/motorola.h \
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
TMPINSTALL_FILES = $(PROJECT_INCLUDE)
TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bspopts.h
TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp.h
TMPINSTALL_FILES += $(PROJECT_INCLUDE)/nvram.h
TMPINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp
TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/motorola.h
TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/consoleIo.h
TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/uart.h
TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/irq.h
all-local: $(TMPINSTALL_FILES)