File: Makefile.am

package info (click to toggle)
coin2 2.3.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 19,728 kB
  • ctags: 23,488
  • sloc: cpp: 147,249; ansic: 34,393; sh: 9,023; makefile: 5,648; yacc: 174; lex: 107; perl: 8
file content (129 lines) | stat: -rw-r--r-- 3,227 bytes parent folder | download
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

SUBDIRS = C VRMLnodes actions annex bundles caches collision details \
          draggers elements engines errors events fields lists lock manips \
          misc nodekits nodes projectors sensors system threads

BUILT_SOURCES = \
	SbBasic.h

DISTCLEANFILES = \
	SbBasic.h \
	stamp-h3

PublicHeaders = \
	Sb.h \
	SbBSPTree.h \
	SbBasic.h \
	SbBox.h \
	SbBox2d.h \
	SbBox2f.h \
	SbBox2s.h \
	SbBox3f.h \
	SbBox3s.h \
	SbClip.h \
	SbColor.h \
	SbColor4f.h \
	SbCylinder.h \
	SbDPLine.h \
	SbDPLinear.h \
	SbDPMatrix.h \
	SbDPPlane.h \
	SbDPRotation.h \
	SbDPViewVolume.h \
	SbDict.h \
	SbHeap.h \
	SbImage.h \
	SbLine.h \
	SbLinear.h \
	SbMatrix.h \
	SbName.h \
	SbOctTree.h \
	SbPList.h \
	SbPlane.h \
	SbRotation.h \
	SbSphere.h \
	SbString.h \
	SbTesselator.h \
	SbTime.h \
	SbVec2d.h \
	SbVec2f.h \
	SbVec2s.h \
	SbVec3d.h \
	SbVec3f.h \
	SbVec3s.h \
	SbVec4d.h \
	SbVec4f.h \
	SbViewVolume.h \
	SbViewportRegion.h \
	SbXfBox3f.h \
	So.h \
	SoDB.h \
	SoFullPath.h \
	SoInput.h \
	SoInteraction.h \
	SoLists.h \
	SoNodeKitPath.h \
	SoOffscreenRenderer.h \
	SoOutput.h \
	SoPath.h \
	SoPickedPoint.h \
	SoPrimitiveVertex.h \
	SoSceneManager.h \
	SoType.h

PrivateHeaders = \
	SbBasic.h.in
ObsoleteHeaders =

SbBasic.h: $(srcdir)/SbBasic.h.in
	@( cd $(top_builddir); $(MAKE) built-sources )

##$ BEGIN TEMPLATE Make-Common(inventor, .)
# **************************************************************************
# 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
libinventorincdir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Headers/.
# 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
libinventorincdir = $(includedir)/Inventor/.
endif
libinventorinc_HEADERS = $(PublicHeaders)

install-libinventorincHEADERS: $(libinventorinc_HEADERS)
	@$(NORMAL_INSTALL)
	@if test x"$(libinventorinc_HEADERS)" = x""; then :; else \
	  echo " $(mkinstalldirs) $(DESTDIR)$(libinventorincdir)"; \
	  $(mkinstalldirs) $(DESTDIR)$(libinventorincdir); \
	fi
	@list='$(libinventorinc_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)$(libinventorincdir)/$$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)$(libinventorincdir)/$$f"; \
	  if test -x "$$file"; then \
	    echo " rm -f $$file"; \
	    rm -f "$$file"; \
	  fi \
	done; \
	:

##$ END TEMPLATE Make-Common