mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-31 03:02:56 +08:00
* include/itronsys/Makefile.am: Remove. * include/rtems/Makefile.am: Remove. * include/rtems/itron/Makefile.am: Remove. * inline/rtems/Makefile.am: Remove. * inline/rtems/itron/Makefile.am: Remove. * macros/rtems/Makefile.am: Remove. * macros/rtems/itron/Makefile.am: Remove. * include/Makefile.am: handle subdirs. * inline/Makefile.am: handle subdirs. * macros/Makefile.am: handle subdirs. * configure.ac: Reflect changes above.
28 lines
749 B
Makefile
28 lines
749 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
AUTOMAKE_OPTIONS = foreign 1.5
|
|
|
|
include_rtems_itrondir = $(includedir)/rtems/itron
|
|
|
|
$(PROJECT_INCLUDE)/rtems/itron:
|
|
@$(mkinstalldirs) $@
|
|
$(PROJECT_INCLUDE)/%: %
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
if INLINE
|
|
include_rtems_itron_HEADERS = rtems/itron/eventflags.inl \
|
|
rtems/itron/fmempool.inl rtems/itron/intr.inl rtems/itron/mbox.inl \
|
|
rtems/itron/msgbuffer.inl rtems/itron/network.inl rtems/itron/port.inl \
|
|
rtems/itron/semaphore.inl rtems/itron/sysmgmt.inl rtems/itron/task.inl \
|
|
rtems/itron/time.inl rtems/itron/vmempool.inl
|
|
|
|
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/itron \
|
|
$(include_rtems_itron_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
endif
|
|
|
|
all-local: $(PREINSTALL_FILES)
|
|
|
|
include $(top_srcdir)/../../../../automake/local.am
|