summaryrefslogtreecommitdiff
path: root/proto/x11proto/Makefile.in
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2006-12-17 11:03:31 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2006-12-17 11:03:31 +0000
commite695eb06d0a2237a8967bb03590e472b45126df9 (patch)
tree5f87e02688181e2983774dc3ec124e889ff884f0 /proto/x11proto/Makefile.in
parent46b4c688dd30161071c08bb54636505258f2cbfc (diff)
regen
Diffstat (limited to 'proto/x11proto/Makefile.in')
-rw-r--r--proto/x11proto/Makefile.in51
1 files changed, 37 insertions, 14 deletions
diff --git a/proto/x11proto/Makefile.in b/proto/x11proto/Makefile.in
index 5cf49c997..4a245b816 100644
--- a/proto/x11proto/Makefile.in
+++ b/proto/x11proto/Makefile.in
@@ -61,11 +61,13 @@ am__vpath_adj = case $$p in \
*) f=$$p;; \
esac;
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-am__installdirs = "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(xprotodir)"
+am__installdirs = "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(xprotodir)" \
+ "$(DESTDIR)$(xprotodir)"
pkgconfigDATA_INSTALL = $(INSTALL_DATA)
DATA = $(pkgconfig_DATA)
+nodist_xprotoHEADERS_INSTALL = $(INSTALL_HEADER)
xprotoHEADERS_INSTALL = $(INSTALL_HEADER)
-HEADERS = $(xproto_HEADERS)
+HEADERS = $(nodist_xproto_HEADERS) $(xproto_HEADERS)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -170,14 +172,12 @@ xproto_HEADERS = \
Xatom.h \
Xdefs.h \
XF86keysym.h \
- Xfuncproto.h \
Xfuncs.h \
X.h \
Xmd.h \
Xosdefs.h \
Xos.h \
Xos_r.h \
- Xpoll.h \
Xproto.h \
Xprotostr.h \
Xthreads.h \
@@ -186,6 +186,10 @@ xproto_HEADERS = \
Xwindows.h \
Xwinsock.h
+nodist_xproto_HEADERS = \
+ Xfuncproto.h \
+ Xpoll.h
+
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = xproto.pc
EXTRA_DIST = autogen.sh xproto.pc.in ChangeLog
@@ -276,6 +280,23 @@ uninstall-pkgconfigDATA:
echo " rm -f '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
rm -f "$(DESTDIR)$(pkgconfigdir)/$$f"; \
done
+install-nodist_xprotoHEADERS: $(nodist_xproto_HEADERS)
+ @$(NORMAL_INSTALL)
+ test -z "$(xprotodir)" || $(mkdir_p) "$(DESTDIR)$(xprotodir)"
+ @list='$(nodist_xproto_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+ f=$(am__strip_dir) \
+ echo " $(nodist_xprotoHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(xprotodir)/$$f'"; \
+ $(nodist_xprotoHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(xprotodir)/$$f"; \
+ done
+
+uninstall-nodist_xprotoHEADERS:
+ @$(NORMAL_UNINSTALL)
+ @list='$(nodist_xproto_HEADERS)'; for p in $$list; do \
+ f=$(am__strip_dir) \
+ echo " rm -f '$(DESTDIR)$(xprotodir)/$$f'"; \
+ rm -f "$(DESTDIR)$(xprotodir)/$$f"; \
+ done
install-xprotoHEADERS: $(xproto_HEADERS)
@$(NORMAL_INSTALL)
test -z "$(xprotodir)" || $(mkdir_p) "$(DESTDIR)$(xprotodir)"
@@ -476,7 +497,7 @@ check-am: all-am
check: check-am
all-am: Makefile $(DATA) $(HEADERS) do-not-use-config.h Xfuncproto.h
installdirs:
- for dir in "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(xprotodir)"; do \
+ for dir in "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(xprotodir)" "$(DESTDIR)$(xprotodir)"; do \
test -z "$$dir" || $(mkdir_p) "$$dir"; \
done
install: install-am
@@ -523,7 +544,8 @@ info: info-am
info-am:
-install-data-am: install-pkgconfigDATA install-xprotoHEADERS
+install-data-am: install-nodist_xprotoHEADERS install-pkgconfigDATA \
+ install-xprotoHEADERS
install-exec-am:
@@ -551,8 +573,8 @@ ps: ps-am
ps-am:
-uninstall-am: uninstall-info-am uninstall-pkgconfigDATA \
- uninstall-xprotoHEADERS
+uninstall-am: uninstall-info-am uninstall-nodist_xprotoHEADERS \
+ uninstall-pkgconfigDATA uninstall-xprotoHEADERS
.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
clean-generic ctags dist dist-all dist-bzip2 dist-gzip \
@@ -561,18 +583,19 @@ uninstall-am: uninstall-info-am uninstall-pkgconfigDATA \
distdir distuninstallcheck dvi dvi-am html html-am info \
info-am install install-am install-data install-data-am \
install-exec install-exec-am install-info install-info-am \
- install-man install-pkgconfigDATA install-strip \
- install-xprotoHEADERS installcheck installcheck-am installdirs \
- maintainer-clean maintainer-clean-generic mostlyclean \
- mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
- uninstall-am uninstall-info-am uninstall-pkgconfigDATA \
+ install-man install-nodist_xprotoHEADERS install-pkgconfigDATA \
+ install-strip install-xprotoHEADERS installcheck \
+ installcheck-am installdirs maintainer-clean \
+ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
+ pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am \
+ uninstall-nodist_xprotoHEADERS uninstall-pkgconfigDATA \
uninstall-xprotoHEADERS
.PHONY: ChangeLog
ChangeLog:
- (cd $(srcdir) && git-log > ChangeLog )
+ (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)
dist-hook: ChangeLog
# Tell versions [3.59,3.63) of GNU make to not export all variables.