forked from Imagelibrary/rtems
* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * i960ca/Makefile.am: Remove AUTOMAKE_OPTIONS. * Makefile.am: Remove AUTOMAKE_OPTIONS. * i960ka/Makefile.am: Remove AUTOMAKE_OPTIONS. * i960rp/Makefile.am: Remove AUTOMAKE_OPTIONS. * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
24 lines
511 B
Makefile
24 lines
511 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
include_libcpudir = $(includedir)/libcpu
|
|
|
|
include_libcpu_HEADERS = i960CA.h i960HA.h i960KA.h i960RP.h i960JX_RP_common.h
|
|
|
|
$(PROJECT_INCLUDE)/libcpu:
|
|
$(mkinstalldirs) $@
|
|
|
|
$(PROJECT_INCLUDE)/libcpu/%.h: %.h
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
TMPINSTALL_FILES = $(PROJECT_INCLUDE)/libcpu \
|
|
$(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
|
|
|
|
all-local: $(TMPINSTALL_FILES)
|
|
|
|
EXTRA_DIST = i960CA.h i960HA.h i960KA.h i960RP.h i960JX_RP_common.h
|
|
|
|
include $(top_srcdir)/../../../../../automake/local.am
|