2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* Makefile.am: Reworked.
This commit is contained in:
Ralf Corsepius
2003-11-23 10:24:09 +00:00
parent 51f97de6ca
commit 8b273c20db
2 changed files with 60 additions and 32 deletions

View File

@@ -1,3 +1,7 @@
2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Reworked.
2003-09-04 Joel Sherrill <joel@OARcorp.com> 2003-09-04 Joel Sherrill <joel@OARcorp.com>
* include/confdefs.h, include/rtems/config.h, * include/confdefs.h, include/rtems/config.h,

View File

@@ -6,58 +6,32 @@ include $(top_srcdir)/automake/multilib.am
include $(top_srcdir)/automake/compile.am include $(top_srcdir)/automake/compile.am
include $(top_srcdir)/automake/lib.am include $(top_srcdir)/automake/lib.am
$(PROJECT_INCLUDE):
@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/rtems:
@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/%.h: include/%.h
$(INSTALL_DATA) $< $@
$(PROJECT_INCLUDE)/%.inl: $(INLINEdir)/%.inl
$(INSTALL_DATA) $< $@
include_HEADERS = include/confdefs.h include_HEADERS = include/confdefs.h
PREINSTALL_FILES = $(PROJECT_INCLUDE)
PREINSTALL_FILES += $(include_HEADERS:include/%=$(PROJECT_INCLUDE)/%)
include_rtemsdir = $(includedir)/rtems include_rtemsdir = $(includedir)/rtems
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems
include_rtems_HEADERS = include/rtems/config.h include/rtems/extension.h \ include_rtems_HEADERS = include/rtems/config.h include/rtems/extension.h \
include/rtems/fatal.h \ include/rtems/fatal.h include/rtems/init.h include/rtems/io.h \
include/rtems/init.h include/rtems/io.h include/rtems/mptables.h \ include/rtems/mptables.h include/rtems/sptables.h
include/rtems/sptables.h
PREINSTALL_FILES += $(include_rtems_HEADERS:include/%=$(PROJECT_INCLUDE)/%)
EXTRA_DIST = include/rtems/README EXTRA_DIST = include/rtems/README
## inline ## inline
inline_H_FILES = inline/rtems/extension.inl
noinst_HEADERS = $(inline_H_FILES)
if INLINE if INLINE
PREINSTALL_FILES += $(inline_H_FILES:inline/%=$(PROJECT_INCLUDE)/%) include_rtems_HEADERS += inline/rtems/extension.inl
include_rtems_HEADERS += $(inline_H_FILES)
endif endif
## macros ## macros
macros_H_FILES = macros/rtems/extension.inl
noinst_HEADERS += $(macros_H_FILES)
if MACROS if MACROS
PREINSTALL_FILES += $(macros_H_FILES:macros/%=$(PROJECT_INCLUDE)/%) include_rtems_HEADERS += macros/rtems/extension.inl
include_rtems_HEADERS += $(macros_H_FILES)
endif endif
## src ## src
LIB=$(ARCH)/libsapi.a LIB=$(ARCH)/libsapi.a
EXTENSION_FILES = src/extension.c src/extensioncreate.c src/extensiondelete.c \ EXTENSION_FILES = src/extension.c src/extensioncreate.c \
src/extensionident.c src/extensiondelete.c src/extensionident.c
C_FILES = src/debug.c $(EXTENSION_FILES) src/fatal.c src/exinit.c src/io.c \ C_FILES = src/debug.c $(EXTENSION_FILES) src/fatal.c src/exinit.c src/io.c \
src/itronapi.c src/posixapi.c src/rtemsapi.c src/itronapi.c src/posixapi.c src/rtemsapi.c
OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT)) OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT))
@@ -78,4 +52,54 @@ ${ARCH}/%.$(OBJEXT): src/%.c
EXTRA_DIST += $(C_FILES) EXTRA_DIST += $(C_FILES)
PREINSTALL_FILES =
$(PROJECT_INCLUDE)/confdefs.h: include/confdefs.h
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE)/confdefs.h
$(PROJECT_INCLUDE)/rtems:
@$(mkinstalldirs) $(PROJECT_INCLUDE)/rtems
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems
$(PROJECT_INCLUDE)/rtems/config.h: include/rtems/config.h
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/config.h
$(PROJECT_INCLUDE)/rtems/extension.h: include/rtems/extension.h
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/extension.h
$(PROJECT_INCLUDE)/rtems/fatal.h: include/rtems/fatal.h
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/fatal.h
$(PROJECT_INCLUDE)/rtems/init.h: include/rtems/init.h
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/init.h
$(PROJECT_INCLUDE)/rtems/io.h: include/rtems/io.h
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/io.h
$(PROJECT_INCLUDE)/rtems/mptables.h: include/rtems/mptables.h
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/mptables.h
$(PROJECT_INCLUDE)/rtems/sptables.h: include/rtems/sptables.h
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/sptables.h
if INLINE
$(PROJECT_INCLUDE)/rtems/extension.inl: inline/rtems/extension.inl
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/extension.inl
endif
if MACROS
$(PROJECT_INCLUDE)/rtems/extension.inl: macros/rtems/extension.inl
$(INSTALL_DATA) $< $@
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/extension.inl
endif
include $(top_srcdir)/automake/local.am include $(top_srcdir)/automake/local.am