forked from Imagelibrary/rtems
* machine/param.h, sys/syslimits.h: In the continued effort to eliminate .h conflicts between newlib and RTEMS, these were moved to newlib. * machine/Makefile.am, sys/Makefile.am: Reflect above.
22 lines
437 B
Makefile
22 lines
437 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
include_machinedir = $(includedir)/machine
|
|
|
|
include_machine_HEADERS = conf.h cpu.h cpufunc.h endian.h in_cksum.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
|