forked from Imagelibrary/rtems
24 lines
459 B
Makefile
24 lines
459 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
AUTOMAKE_OPTIONS = foreign 1.4
|
|
|
|
H_FILES = conf.h cpu.h cpufunc.h endian.h in_cksum.h limits.h param.h \
|
|
types.h vmparam.h
|
|
|
|
noinst_HEADERS = $(H_FILES)
|
|
|
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/machine \
|
|
$(H_FILES:%=$(PROJECT_INCLUDE)/machine/%)
|
|
|
|
$(PROJECT_INCLUDE)/machine:
|
|
@$(mkinstalldirs) $@
|
|
|
|
$(PROJECT_INCLUDE)/machine/%.h: %.h
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
all-local: $(PREINSTALL_FILES)
|
|
|
|
include $(top_srcdir)/../../../automake/local.am
|