summaryrefslogtreecommitdiff
path: root/c/src/lib/libbsp/sparc64/niagara/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/sparc64/niagara/Makefile.in')
-rw-r--r--c/src/lib/libbsp/sparc64/niagara/Makefile.in51
1 files changed, 40 insertions, 11 deletions
diff --git a/c/src/lib/libbsp/sparc64/niagara/Makefile.in b/c/src/lib/libbsp/sparc64/niagara/Makefile.in
index ee93b7b42e..5f97380df8 100644
--- a/c/src/lib/libbsp/sparc64/niagara/Makefile.in
+++ b/c/src/lib/libbsp/sparc64/niagara/Makefile.in
@@ -54,8 +54,8 @@ build_triplet = @build@
host_triplet = @host@
DIST_COMMON = README $(am__configure_deps) $(dist_project_lib_DATA) \
$(include_HEADERS) $(include_boot_HEADERS) \
- $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
- $(srcdir)/preinstall.am \
+ $(include_bsp_HEADERS) $(srcdir)/Makefile.am \
+ $(srcdir)/Makefile.in $(srcdir)/preinstall.am \
$(top_srcdir)/../../../../../../config.guess \
$(top_srcdir)/../../../../../../config.sub \
$(top_srcdir)/../../../../../../depcomp \
@@ -174,11 +174,12 @@ am__uninstall_files_from_dir = { \
}
am__installdirs = "$(DESTDIR)$(project_libdir)" \
"$(DESTDIR)$(project_libdir)" "$(DESTDIR)$(includedir)" \
- "$(DESTDIR)$(include_bootdir)" "$(DESTDIR)$(includedir)" \
- "$(DESTDIR)$(include_bspdir)"
+ "$(DESTDIR)$(include_bootdir)" "$(DESTDIR)$(include_bspdir)" \
+ "$(DESTDIR)$(includedir)" "$(DESTDIR)$(include_bspdir)"
DATA = $(dist_project_lib_DATA) $(project_lib_DATA)
HEADERS = $(include_HEADERS) $(include_boot_HEADERS) \
- $(nodist_include_HEADERS) $(nodist_include_bsp_HEADERS)
+ $(include_bsp_HEADERS) $(nodist_include_HEADERS) \
+ $(nodist_include_bsp_HEADERS)
ETAGS = etags
CTAGS = ctags
CSCOPE = cscope
@@ -335,6 +336,7 @@ CPPASCOMPILE = $(CCAS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)
include_bspdir = $(includedir)/bsp
dist_project_lib_DATA = bsp_specs ../shared/startup/linkcmds
include_HEADERS = include/bsp.h include/tm27.h ../shared/include/asm.h
+include_bsp_HEADERS = ../shared/include/bsp/setvec.h
include_bootdir = $(includedir)/boot
include_boot_HEADERS = ../shared/helenos/boot/include/align.h \
../shared/helenos/boot/include/balloc.h \
@@ -397,6 +399,7 @@ TMPINSTALL_FILES = $(PROJECT_LIB)/start.$(OBJEXT)
CLEANFILES = $(TMPINSTALL_FILES) $(PREINSTALL_FILES)
PREINSTALL_FILES = $(PROJECT_LIB)/bsp_specs $(PROJECT_INCLUDE)/bsp.h \
$(PROJECT_INCLUDE)/tm27.h $(PROJECT_INCLUDE)/asm.h \
+ $(PROJECT_INCLUDE)/bsp/setvec.h \
$(PROJECT_INCLUDE)/boot/align.h \
$(PROJECT_INCLUDE)/boot/balloc.h \
$(PROJECT_INCLUDE)/boot/gentypes.h \
@@ -1013,6 +1016,27 @@ uninstall-include_bootHEADERS:
@list='$(include_boot_HEADERS)'; test -n "$(include_bootdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(include_bootdir)'; $(am__uninstall_files_from_dir)
+install-include_bspHEADERS: $(include_bsp_HEADERS)
+ @$(NORMAL_INSTALL)
+ @list='$(include_bsp_HEADERS)'; test -n "$(include_bspdir)" || list=; \
+ if test -n "$$list"; then \
+ echo " $(MKDIR_P) '$(DESTDIR)$(include_bspdir)'"; \
+ $(MKDIR_P) "$(DESTDIR)$(include_bspdir)" || exit 1; \
+ fi; \
+ for p in $$list; do \
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+ echo "$$d$$p"; \
+ done | $(am__base_list) | \
+ while read files; do \
+ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(include_bspdir)'"; \
+ $(INSTALL_HEADER) $$files "$(DESTDIR)$(include_bspdir)" || exit $$?; \
+ done
+
+uninstall-include_bspHEADERS:
+ @$(NORMAL_UNINSTALL)
+ @list='$(include_bsp_HEADERS)'; test -n "$(include_bspdir)" || list=; \
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
+ dir='$(DESTDIR)$(include_bspdir)'; $(am__uninstall_files_from_dir)
install-nodist_includeHEADERS: $(nodist_include_HEADERS)
@$(NORMAL_INSTALL)
@list='$(nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
@@ -1292,7 +1316,7 @@ check-am: all-am
check: check-am
all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(DATA) $(HEADERS) all-local
installdirs:
- for dir in "$(DESTDIR)$(project_libdir)" "$(DESTDIR)$(project_libdir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(include_bootdir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(include_bspdir)"; do \
+ for dir in "$(DESTDIR)$(project_libdir)" "$(DESTDIR)$(project_libdir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(include_bootdir)" "$(DESTDIR)$(include_bspdir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(include_bspdir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-am
@@ -1352,7 +1376,8 @@ info: info-am
info-am:
install-data-am: install-dist_project_libDATA install-includeHEADERS \
- install-include_bootHEADERS install-nodist_includeHEADERS \
+ install-include_bootHEADERS install-include_bspHEADERS \
+ install-nodist_includeHEADERS \
install-nodist_include_bspHEADERS install-project_libDATA
install-dvi: install-dvi-am
@@ -1401,7 +1426,8 @@ ps: ps-am
ps-am:
uninstall-am: uninstall-dist_project_libDATA uninstall-includeHEADERS \
- uninstall-include_bootHEADERS uninstall-nodist_includeHEADERS \
+ uninstall-include_bootHEADERS uninstall-include_bspHEADERS \
+ uninstall-nodist_includeHEADERS \
uninstall-nodist_include_bspHEADERS uninstall-project_libDATA
.MAKE: install-am install-strip
@@ -1417,8 +1443,8 @@ uninstall-am: uninstall-dist_project_libDATA uninstall-includeHEADERS \
install-dist_project_libDATA install-dvi install-dvi-am \
install-exec install-exec-am install-html install-html-am \
install-includeHEADERS install-include_bootHEADERS \
- install-info install-info-am install-man \
- install-nodist_includeHEADERS \
+ install-include_bspHEADERS install-info install-info-am \
+ install-man install-nodist_includeHEADERS \
install-nodist_include_bspHEADERS install-pdf install-pdf-am \
install-project_libDATA install-ps install-ps-am install-strip \
installcheck installcheck-am installdirs maintainer-clean \
@@ -1426,7 +1452,7 @@ uninstall-am: uninstall-dist_project_libDATA uninstall-includeHEADERS \
mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
uninstall-am uninstall-dist_project_libDATA \
uninstall-includeHEADERS uninstall-include_bootHEADERS \
- uninstall-nodist_includeHEADERS \
+ uninstall-include_bspHEADERS uninstall-nodist_includeHEADERS \
uninstall-nodist_include_bspHEADERS uninstall-project_libDATA
start.$(OBJEXT): ../shared/start/start.S
@@ -1463,6 +1489,9 @@ $(PROJECT_INCLUDE)/tm27.h: include/tm27.h $(PROJECT_INCLUDE)/$(dirstamp)
$(PROJECT_INCLUDE)/asm.h: ../shared/include/asm.h $(PROJECT_INCLUDE)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/asm.h
+$(PROJECT_INCLUDE)/bsp/setvec.h: ../shared/include/bsp/setvec.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
+ $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/setvec.h
+
$(PROJECT_INCLUDE)/boot/$(dirstamp):
@$(MKDIR_P) $(PROJECT_INCLUDE)/boot
@: > $(PROJECT_INCLUDE)/boot/$(dirstamp)