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

* Makefile.am: Reformat.
	* clock/Makefile.am: Reformat.
	* mongoosev/Makefile.am: Reformat. Use dirstamps for preinstallation.
	* tx39/Makefile.am: Ditto.
	* shared/cache/Makefile.am: Ditto.
	* mongoosev/duart/Makefile.am: Ditto.
	* mongoosev/vectorisrs/Makefile.am: Reformat.
	* r46xx/vectorisrs/Makefile.am: Reformat.
	* shared/Makefile.am: Reformat.
	* shared/interrupts/Makefile.am: Reformat.
	* timer/Makefile.am: Reformat.
	* tx39/vectorisrs/Makefile.am: Reformat.
This commit is contained in:
Ralf Corsepius
2003-12-01 11:33:47 +00:00
parent ad9721efaa
commit c6c4418c6c
13 changed files with 47 additions and 33 deletions

View File

@@ -2,7 +2,6 @@
## $Id$
##
SUBDIRS = cache interrupts
include $(top_srcdir)/../../../automake/subdirs.am

View File

@@ -2,7 +2,6 @@
## $Id$
##
VPATH = @srcdir@:@srcdir@/../../../shared/src
C_FILES = cache.c cache_aligned_malloc.c cache_manager.c
@@ -18,22 +17,24 @@ include $(top_srcdir)/../../../automake/lib.am
AM_CPPFLAGS += -I$(srcdir)
$(PROJECT_INCLUDE)/libcpu:
$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/libcpu/%.h: %.h
$(INSTALL_DATA) $< $@
cache.h: $(top_srcdir)/../shared/include/cache.h
cp $< $@
PREINSTALL_FILES = $(PROJECT_INCLUDE)/libcpu \
$(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)
CLEANFILES = cache.h
EXTRA_DIST = cache.c cache_.h
PREINSTALL_FILES =
$(PROJECT_INCLUDE)/libcpu/$(dirstamp):
@$(mkinstalldirs) $(PROJECT_INCLUDE)/libcpu
@: > $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
$(PROJECT_INCLUDE)/libcpu/cache.h: cache.h $(PROJECT_INCLUDE)/libcpu/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/libcpu/cache.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu/cache.h
include $(top_srcdir)/../../../automake/local.am

View File

@@ -2,14 +2,14 @@
## $Id$
##
PGM = $(ARCH)/interrupts.rel
C_FILES = installisrentries.c vectorexceptions.c
S_FILES = isr_entries.S
interrupts_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
interrupts_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) \
$(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
include $(top_srcdir)/../../../automake/compile.am
include $(top_srcdir)/../../../automake/lib.am