forked from Imagelibrary/rtems
Makefile.am: Reflect having moved automake. bootloader/Makefile.am: Reflect having moved automake. clock/Makefile.am: Reflect having moved automake. console/Makefile.am: Reflect having moved automake. include/Makefile.am: Reflect having moved automake. irq/Makefile.am: Reflect having moved automake. motorola/Makefile.am: Reflect having moved automake. openpic/Makefile.am: Reflect having moved automake. pci/Makefile.am: Reflect having moved automake. residual/Makefile.am: Reflect having moved automake. start/Makefile.am: Reflect having moved automake. startup/Makefile.am: Reflect having moved automake. vectors/Makefile.am: Reflect having moved automake. vme/Makefile.am: Reflect having moved automake.
26 lines
407 B
Makefile
26 lines
407 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
C_FILES = vectors_init.c
|
|
|
|
H_FILES = vectors.h
|
|
|
|
S_FILES = vectors.S
|
|
|
|
$(PROJECT_INCLUDE)/bsp:
|
|
$(mkinstalldirs) $@
|
|
|
|
$(PROJECT_INCLUDE)/bsp/%.h: %.h
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
PREINSTALL_FILES = $(PROJECT_INCLUDE)/bsp \
|
|
$(H_FILES:%.h=$(PROJECT_INCLUDE)/bsp/%.h)
|
|
|
|
all-local: $(PREINSTALL_FILES)
|
|
|
|
EXTRA_DIST = vectors.S vectors.h vectors_init.c
|
|
|
|
include $(top_srcdir)/../../../automake/local.am
|