2001-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* include/Makefile.am, include/rtems/Makefile.am,
	inline/rtems/Makefile.am, macros/rtems/Makefile.am:
	Apply include_*HEADERS instead of H_FILES.
This commit is contained in:
Joel Sherrill
2001-02-05 18:32:28 +00:00
parent f0ab3fa51e
commit 3ebf5df3c6
7 changed files with 30 additions and 19 deletions

View File

@@ -1,3 +1,9 @@
2001-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/Makefile.am, include/rtems/Makefile.am,
inline/rtems/Makefile.am, macros/rtems/Makefile.am:
Apply include_*HEADERS instead of H_FILES.
2001-01-28 Ralf Corsepius <corsepiu@faw.uni-ulm.d>
* include/confdefs.h: define CONFIGURE_NEWLIB_EXTENSION 0 if not

View File

@@ -4,12 +4,10 @@
AUTOMAKE_OPTIONS = foreign 1.4
H_FILES = confdefs.h
noinst_HEADERS = $(H_FILES)
include_HEADERS = confdefs.h
PREINSTALL_FILES += $(PROJECT_INCLUDE) \
$(noinst_HEADERS:%=$(PROJECT_INCLUDE)/%)
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
$(PROJECT_INCLUDE):
@$(mkinstalldirs) $@

View File

@@ -4,13 +4,13 @@
AUTOMAKE_OPTIONS = foreign 1.4
H_FILES = config.h directives.h extension.h fatal.h init.h io.h mptables.h \
include_rtemsdir = $(includedir)/rtems
include_rtems_HEADERS = config.h directives.h extension.h fatal.h init.h io.h mptables.h \
sptables.h
noinst_HEADERS = $(H_FILES)
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
$(noinst_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
$(PROJECT_INCLUDE)/rtems:
@$(mkinstalldirs) $@

View File

@@ -3,14 +3,13 @@
##
AUTOMAKE_OPTIONS = foreign 1.4
include_rtemsdir = $(includedir)/rtems
if INLINE
I_FILES = extension.inl
noinst_HEADERS = $(I_FILES)
include_rtems_HEADERS = extension.inl
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
$(noinst_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
$(PROJECT_INCLUDE)/rtems:
@$(mkinstalldirs) $@

View File

@@ -4,13 +4,15 @@
AUTOMAKE_OPTIONS = foreign 1.4
include_rtemsdir = $(includedir)/rtems
I_FILES = extension.inl
noinst_HEADERS = $(I_FILES)
if MACROS
include_rtems_HEADERS = $(I_FILES)
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \
$(noinst_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
$(PROJECT_INCLUDE)/rtems:
@$(mkinstalldirs) $@
@@ -20,4 +22,6 @@ endif
all-local: $(PREINSTALL_FILES)
EXTRA_DIST = $(I_FILES)
include $(top_srcdir)/../../../automake/local.am