forked from Imagelibrary/rtems
* Makefile.am: Remove AUTOMAKE_OPTIONS. * include/Makefile.am: Remove AUTOMAKE_OPTIONS. * inline/Makefile.am: Remove AUTOMAKE_OPTIONS. * macros/Makefile.am: Remove AUTOMAKE_OPTIONS. * src/Makefile.am: Remove AUTOMAKE_OPTIONS.
23 lines
393 B
Makefile
23 lines
393 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
include_rtemsdir = $(includedir)/rtems
|
|
|
|
$(PROJECT_INCLUDE)/rtems:
|
|
@$(mkinstalldirs) $@
|
|
$(PROJECT_INCLUDE)/%: %
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
if INLINE
|
|
include_rtems_HEADERS = rtems/extension.inl
|
|
|
|
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
|
|
$(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
endif
|
|
|
|
all-local: $(PREINSTALL_FILES)
|
|
|
|
include $(top_srcdir)/../../../automake/local.am
|