1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
PublicHeaders = \
SoSubField.h \
SoFields.h \
SoField.h \
SoFieldContainer.h \
SoFieldData.h \
SoMFBitMask.h \
SoMFBool.h \
SoMFColor.h \
SoMFColorRGBA.h \
SoMFDouble.h \
SoMFEngine.h \
SoMFEnum.h \
SoMFFloat.h \
SoMFInt32.h \
SoMFLong.h \
SoMFMatrix.h \
SoMFName.h \
SoMFNode.h \
SoMFPath.h \
SoMFPlane.h \
SoMFRotation.h \
SoMFShort.h \
SoMFString.h \
SoMFTime.h \
SoMFUInt32.h \
SoMFULong.h \
SoMFUShort.h \
SoMFVec2b.h \
SoMFVec2s.h \
SoMFVec2i32.h \
SoMFVec2f.h \
SoMFVec2d.h \
SoMFVec3b.h \
SoMFVec3s.h \
SoMFVec3i32.h \
SoMFVec3f.h \
SoMFVec3d.h \
SoMFVec4b.h \
SoMFVec4s.h \
SoMFVec4i32.h \
SoMFVec4f.h \
SoMFVec4d.h \
SoMFVec4ub.h \
SoMFVec4us.h \
SoMFVec4ui32.h \
SoMField.h \
SoSFBitMask.h \
SoSFBool.h \
SoSFBox2s.h \
SoSFBox2i32.h \
SoSFBox2f.h \
SoSFBox2d.h \
SoSFBox3s.h \
SoSFBox3i32.h \
SoSFBox3f.h \
SoSFBox3d.h \
SoSFColor.h \
SoSFColorRGBA.h \
SoSFDouble.h \
SoSFEngine.h \
SoSFEnum.h \
SoSFFloat.h \
SoSFImage.h \
SoSFImage3.h \
SoSFInt32.h \
SoSFLong.h \
SoSFMatrix.h \
SoSFName.h \
SoSFNode.h \
SoSFPath.h \
SoSFPlane.h \
SoSFRotation.h \
SoSFShort.h \
SoSFString.h \
SoSFTime.h \
SoSFTrigger.h \
SoSFUInt32.h \
SoSFULong.h \
SoSFUShort.h \
SoSFVec2b.h \
SoSFVec2s.h \
SoSFVec2i32.h \
SoSFVec2f.h \
SoSFVec2d.h \
SoSFVec3b.h \
SoSFVec3s.h \
SoSFVec3i32.h \
SoSFVec3f.h \
SoSFVec3d.h \
SoSFVec4b.h \
SoSFVec4s.h \
SoSFVec4i32.h \
SoSFVec4f.h \
SoSFVec4d.h \
SoSFVec4ub.h \
SoSFVec4us.h \
SoSFVec4ui32.h \
SoSField.h
PrivateHeaders = \
SoSubFieldP.h \
SoGlobalField.h
ObsoleteHeaders =
##$ BEGIN TEMPLATE Make-Include-Common(fields, fields)
# **************************************************************************
# This template depends on the following variables having been set up before
# its invokation.
#
# PublicHeaders - header files that should be installed
# PrivateHeaders - source files that should be distributed, but not
# installed - including source-included source files.
# ObsoletedHeaders - header files that should be removed upon installation
# Everything below is autogenerated from a macro, so don't modify
# within the Makefile.am itself. 19991201 mortene.
EXTRA_DIST = $(PrivateHeaders)
if MAC_FRAMEWORK
libfieldsincdir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Headers/fields
# hack to change libdir value when installing Mac OS X compiler framework
lib@nop@dir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Libraries
else
libfieldsincdir = $(includedir)/Inventor/fields
endif
libfieldsinc_HEADERS = $(PublicHeaders)
install-libfieldsincHEADERS: $(libfieldsinc_HEADERS)
@$(NORMAL_INSTALL)
@if test x"$(libfieldsinc_HEADERS)" = x""; then :; else \
echo " $(mkinstalldirs) $(DESTDIR)$(libfieldsincdir)"; \
$(mkinstalldirs) $(DESTDIR)$(libfieldsincdir); \
fi
@list='$(libfieldsinc_HEADERS)'; for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
f="`echo $$p | sed -e 's|^.*/||'`"; \
src="$$d$$p"; dst="$(DESTDIR)$(libfieldsincdir)/$$f"; \
if cmp -s "$$src" "$$dst"; then :; else \
echo " $(INSTALL_HEADER) $$src $$dst"; \
$(INSTALL_HEADER) "$$src" "$$dst" || exit 1; \
fi \
done
@list='$(ObsoletedHeaders)'; for f in $$list; do \
file="$(DESTDIR)$(libfieldsincdir)/$$f"; \
if test -x "$$file"; then \
echo " rm -f $$file"; \
rm -f "$$file"; \
fi \
done; \
:
##$ END TEMPLATE Make-Include-Common
|