[go: up one dir, main page]

File: Makefile.am

package info (click to toggle)
coin3 3.1.3-2.2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 48,368 kB
  • sloc: cpp: 314,329; ansic: 15,927; sh: 13,635; makefile: 8,772; perl: 2,149; lex: 1,302; lisp: 1,247; yacc: 184; xml: 175; sed: 68
file content (34 lines) | stat: -rw-r--r-- 772 bytes parent folder | download | duplicates (6)
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
## Process this file with automake to generate Makefile.in.

SUBDIRS = Inventor

EXTRA_DIST = \
	boost.README \
	SoWinEnterScope.h \
	SoWinLeaveScope.h \
	SoDebug.h

if BUILD_LIBRARY
if ! MAC_FRAMEWORK
thisincdir = $(includedir)
thisinc_HEADERS = \
	SoWinEnterScope.h \
	SoWinLeaveScope.h \
	SoDebug.h

install-thisincHEADERS: $(thisinc_HEADERS)
	@$(NORMAL_INSTALL)
	$(mkinstalldirs) $(DESTDIR)$(thisincdir)
	@list='$(thisinc_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)$(thisincdir)/$$f"; \
	  if cmp -s "$$src" "$$dst"; then :; else \
	    echo " $(INSTALL_HEADER) $$src $$dst"; \
	    $(INSTALL_HEADER) "$$src" "$$dst"; \
	  fi \
	done

endif
endif