forked from Imagelibrary/rtems
* configure.in: Add bspopts.h. * include/bsp.h: Include bspopts.h. * include/.cvsignore: Add bspopts.h*, coverhd.h, stamp-h*. * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
25 lines
455 B
Makefile
25 lines
455 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
AUTOMAKE_OPTIONS = foreign 1.4
|
|
|
|
include_HEADERS = bsp.h coverhd.h bspopts.h
|
|
|
|
$(PROJECT_INCLUDE):
|
|
$(mkinstalldirs) $@
|
|
|
|
$(PROJECT_INCLUDE)/%.h: %.h
|
|
$(INSTALL_DATA) $< $@
|
|
|
|
coverhd.h: $(top_srcdir)/../../shared/include/coverhd.h
|
|
cp $< $@
|
|
CLEANFILES += coverhd.h
|
|
|
|
TMPINSTALL_FILES += $(PROJECT_INCLUDE) \
|
|
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
|
|
|
all-local: $(TMPINSTALL_FILES)
|
|
|
|
include $(top_srcdir)/../../../../../../automake/local.am
|