forked from Imagelibrary/rtems
* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * arpa/Makefile.am: Remove AUTOMAKE_OPTIONS. * kern/Makefile.am: Remove AUTOMAKE_OPTIONS. * Makefile.am: Remove AUTOMAKE_OPTIONS. * lib/Makefile.am: Remove AUTOMAKE_OPTIONS. * libc/Makefile.am: Remove AUTOMAKE_OPTIONS. * machine/Makefile.am: Remove AUTOMAKE_OPTIONS. * net/Makefile.am: Remove AUTOMAKE_OPTIONS. * netinet/Makefile.am: Remove AUTOMAKE_OPTIONS. * nfs/Makefile.am: Remove AUTOMAKE_OPTIONS. * pppd/Makefile.am: Remove AUTOMAKE_OPTIONS. * rtems/Makefile.am: Remove AUTOMAKE_OPTIONS. * rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS. * rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS. * rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS. * sys/Makefile.am: Remove AUTOMAKE_OPTIONS. * vm/Makefile.am: Remove AUTOMAKE_OPTIONS. * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
28 lines
662 B
Makefile
28 lines
662 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
|
|
|
|
include_sysdir = $(includedir)/sys
|
|
|
|
include_sys_HEADERS = buf.h callout.h conf.h domain.h filio.h ioctl.h kernel.h libkern.h \
|
|
malloc.h mbuf.h mount.h param.h proc.h protosw.h queue.h reboot.h \
|
|
resourcevar.h rtprio.h select.h signalvar.h socket.h socketvar.h \
|
|
sockio.h sysctl.h syslimits.h syslog.h systm.h ttydefaults.h ucred.h \
|
|
uio.h un.h
|
|
|
|
PREINSTALL_FILES = $(PROJECT_INCLUDE)/sys \
|
|
$(include_sys_HEADERS:%=$(PROJECT_INCLUDE)/sys/%)
|
|
|
|
$(PROJECT_INCLUDE)/sys:
|
|
@$(mkinstalldirs) $@
|
|
|
|
$(PROJECT_INCLUDE)/sys/%.h: %.h
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
all-local: $(PREINSTALL_FILES)
|
|
|
|
include $(top_srcdir)/../../../automake/local.am
|