forked from Imagelibrary/rtems
* include/rtems/Makefile.am: Use 'PREINSTALL_FILES ='. * include/Makefile.am: Use 'PREINSTALL_FILES ='. * inline/rtems/Makefile.am: Use 'PREINSTALL_FILES ='. * macros/rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
23 lines
407 B
Makefile
23 lines
407 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
AUTOMAKE_OPTIONS = foreign 1.4
|
|
|
|
include_HEADERS = confdefs.h
|
|
|
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) \
|
|
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
|
|
$(PROJECT_INCLUDE):
|
|
@$(mkinstalldirs) $@
|
|
$(PROJECT_INCLUDE)/%.h: %.h
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
all-local: $(PREINSTALL_FILES)
|
|
|
|
SUBDIRS = rtems
|
|
|
|
include $(top_srcdir)/../../../automake/subdirs.am
|
|
include $(top_srcdir)/../../../automake/local.am
|