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

* Makefile.am: Reformat. Use dirstamp for preinstallation.
	* mpc505/Makefile.am: Reformat.
	* mpc505/ictrl/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* mpc505/timer/Makefile.am: Reformat.
	* mpc505/vectors/Makefile.am: Reformat.
	* mpc6xx/Makefile.am: Reformat.
	* mpc6xx/clock/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* mpc6xx/exceptions/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* mpc6xx/mmu/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* mpc6xx/timer/Makefile.am: Reformat.
	* mpc6xx/wrapup/Makefile.am: Reformat.
	* mpc8260/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* mpc8260/clock/Makefile.am: Reformat.
	* mpc8260/console-generic/Makefile.am: Reformat.
	* mpc8260/cpm/Makefile.am: Reformat.
	* mpc8260/exceptions/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* mpc8260/mmu/Makefile.am: Reformat.
	* mpc8260/timer/Makefile.am: Reformat.
	* mpc8xx/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* mpc8xx/clock/Makefile.am: Reformat.
	* mpc8xx/console-generic/Makefile.am: Reformat.
	* mpc8xx/cpm/Makefile.am: Reformat.
	* mpc8xx/exceptions/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* mpc8xx/mmu/Makefile.am: Reformat.
	* mpc8xx/timer/Makefile.am: Reformat.
	* ppc403/Makefile.am: Reformat.
	* ppc403/clock/Makefile.am: Reformat.
	* ppc403/console/Makefile.am: Reformat.
	* ppc403/ictrl/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* ppc403/timer/Makefile.am: Reformat.
	* ppc403/tty_drv/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* ppc403/vectors/Makefile.am: Reformat.
	* shared/Makefile.am: Reformat.
	* shared/include/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* shared/src/Makefile.am: Reformat. Use dirstamp for preinstallation.
	* wrapup/Makefile.am: Reformat.
This commit is contained in:
Ralf Corsepius
2003-12-01 11:51:05 +00:00
parent c6c4418c6c
commit a9c795b965
37 changed files with 265 additions and 158 deletions

View File

@@ -2,7 +2,6 @@
## $Id$
##
PGM = $(ARCH)/exceptions.rel
C_FILES = raw_exception.c
@@ -19,11 +18,6 @@ exceptions_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) \
include $(top_srcdir)/../../../automake/compile.am
include $(top_srcdir)/../../../automake/lib.am
$(PROJECT_INCLUDE)/libcpu:
$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/libcpu/%.h: %.h
$(INSTALL_DATA) $< $@
#
# (OPTIONAL) Add local stuff here using +=
#
@@ -31,13 +25,21 @@ $(PROJECT_INCLUDE)/libcpu/%.h: %.h
$(PGM): $(exceptions_rel_OBJECTS)
$(make-rel)
PREINSTALL_FILES = $(PROJECT_INCLUDE)/libcpu \
$(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
all-local: $(ARCH) $(PREINSTALL_FILES) $(exceptions_rel_OBJECTS) $(PGM)
.PRECIOUS: $(PGM)
EXTRA_DIST = asm_utils.S raw_exception.c raw_exception.h
PREINSTALL_FILES =
$(PROJECT_INCLUDE)/libcpu/$(dirstamp):
@$(mkinstalldirs) $(PROJECT_INCLUDE)/libcpu
@: > $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
$(PROJECT_INCLUDE)/libcpu/raw_exception.h: raw_exception.h $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/libcpu/raw_exception.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/raw_exception.h
include $(top_srcdir)/../../../automake/local.am