~ubuntu-branches/debian/sid/coin2/sid

« back to all changes in this revision

Viewing changes to include/Inventor/annex/FXViz/elements/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-06-28 02:38:17 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080628023817-lgrh0u677j1gcqgf
Tags: 2.5.0-2
* debian/control: Change suggests from libopenal0 to libopenal0a.
  Closes: #488001.  Change ${Source-Version} to ${binary:Version}.
  Update to standards version 3.8.0.

* debian/rules: Do not ignore errors in clean rule.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
PublicHeaders = \
 
3
                SoShadowStyleElement.h \
 
4
                SoGLShadowCullingElement.h
 
5
PrivateHeaders =
 
6
ObsoleteHeaders =
 
7
 
 
8
##$ BEGIN TEMPLATE Make-Include-Common(fxvizelements, annex/FXViz/elements)
 
9
# **************************************************************************
 
10
# This template depends on the following variables having been set up before
 
11
# its invokation.
 
12
#
 
13
# PublicHeaders    - header files that should be installed
 
14
# PrivateHeaders   - source files that should be distributed, but not
 
15
#                    installed - including source-included source files.
 
16
# ObsoletedHeaders - header files that should be removed upon installation
 
17
 
 
18
# Everything below is autogenerated from a macro, so don't modify
 
19
# within the Makefile.am itself. 19991201 mortene.
 
20
 
 
21
EXTRA_DIST = $(PrivateHeaders)
 
22
 
 
23
if MAC_FRAMEWORK
 
24
libfxvizelementsincdir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Headers/annex/FXViz/elements
 
25
# hack to change libdir value when installing Mac OS X compiler framework
 
26
lib@nop@dir = $(MAC_FRAMEWORK_PREFIX)/$(MAC_FRAMEWORK_NAME).framework/Versions/$(MAC_FRAMEWORK_VERSION)/Libraries
 
27
else
 
28
libfxvizelementsincdir = $(includedir)/Inventor/annex/FXViz/elements
 
29
endif
 
30
libfxvizelementsinc_HEADERS = $(PublicHeaders)
 
31
 
 
32
install-libfxvizelementsincHEADERS: $(libfxvizelementsinc_HEADERS)
 
33
        @$(NORMAL_INSTALL)
 
34
        @if test x"$(libfxvizelementsinc_HEADERS)" = x""; then :; else \
 
35
          echo " $(mkinstalldirs) $(DESTDIR)$(libfxvizelementsincdir)"; \
 
36
          $(mkinstalldirs) $(DESTDIR)$(libfxvizelementsincdir); \
 
37
        fi
 
38
        @list='$(libfxvizelementsinc_HEADERS)'; for p in $$list; do \
 
39
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
40
          f="`echo $$p | sed -e 's|^.*/||'`"; \
 
41
          src="$$d$$p"; dst="$(DESTDIR)$(libfxvizelementsincdir)/$$f"; \
 
42
          if cmp -s "$$src" "$$dst"; then :; else \
 
43
            echo " $(INSTALL_HEADER) $$src $$dst"; \
 
44
            $(INSTALL_HEADER) "$$src" "$$dst" || exit 1; \
 
45
          fi \
 
46
        done
 
47
        @list='$(ObsoletedHeaders)'; for f in $$list; do \
 
48
          file="$(DESTDIR)$(libfxvizelementsincdir)/$$f"; \
 
49
          if test -x "$$file"; then \
 
50
            echo " rm -f $$file"; \
 
51
            rm -f "$$file"; \
 
52
          fi \
 
53
        done; \
 
54
        :
 
55
 
 
56
##$ END TEMPLATE Make-Include-Common