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
|
PublicHeaders = \
SoSubField.h \
SoFields.h \
SoField.h \
SoFieldContainer.h \
SoFieldData.h \
SoMFBitMask.h \
SoMFBool.h \
SoMFColor.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 \
SoMFVec2f.h \
SoMFVec3f.h \
SoMFVec3d.h \
SoMFVec4f.h \
SoMField.h \
SoSFBitMask.h \
SoSFBool.h \
SoSFBox3s.h \
SoSFColor.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 \
SoSFVec2s.h \
SoSFVec2f.h \
SoSFVec3s.h \
SoSFVec3f.h \
SoSFVec3d.h \
SoSFVec4f.h \
SoSField.h
PrivateHeaders = \
SoSubFieldP.h \
SoGlobalField.h
ObsoleteHeaders =
##$ BEGIN TEMPLATE Make-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-Common
|