mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 22:48:23 +00:00
Relocate c/src/libnetworking. * Makefile.am: Reflect moval. * machine/Makefile.am: Ditto. * net/Makefile.am: Ditto. * lib/Makefile.am: Ditto. * netinet/Makefile.am: Ditto. * vm/Makefile.am: Ditto. * libc/Makefile.am: Ditto. * sys/Makefile.am: Ditto. * arpa/Makefile.am: Ditto. * nfs/Makefile.am: Ditto. * kern/Makefile.am: Ditto. * rtems/Makefile.am: Ditto. * configure.ac: Dittp. * wrapup/Makefile.am: Ditto. Remove references to networking apps.
23 lines
477 B
Makefile
23 lines
477 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
include_machinedir = $(includedir)/machine
|
|
|
|
include_machine_HEADERS = conf.h cpu.h cpufunc.h endian.h in_cksum.h limits.h param.h \
|
|
types.h vmparam.h
|
|
|
|
PREINSTALL_FILES = $(PROJECT_INCLUDE)/machine \
|
|
$(include_machine_HEADERS:%=$(PROJECT_INCLUDE)/machine/%)
|
|
|
|
$(PROJECT_INCLUDE)/machine:
|
|
@$(mkinstalldirs) $@
|
|
|
|
$(PROJECT_INCLUDE)/machine/%.h: %.h
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
all-local: $(PREINSTALL_FILES)
|
|
|
|
include $(top_srcdir)/../../../../automake/local.am
|