[go: up one dir, main page]

File: Makefile.am

package info (click to toggle)
finalcut 0.8.0-6
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 6,220 kB
  • sloc: cpp: 79,176; makefile: 517; sh: 395
file content (28 lines) | stat: -rw-r--r-- 598 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
#----------------------------------------------------------------------
# Makefile.am  -  FINAL CUT terminal programming library
#----------------------------------------------------------------------

AUTOMAKE_OPTIONS = foreign

ACLOCAL_AMFLAGS = -I m4

EXTRA_DIST = finalcut.pc

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = finalcut.pc

CLEANFILES = finalcut.pc

SUBDIRS = final doc examples test

docdir = ${datadir}/doc/${PACKAGE}
doc_DATA = AUTHORS COPYING COPYING.LESSER ChangeLog

test: check

clean-local:
	-rm -f *~

uninstall-hook:
	if test -d ${docdir}; then rmdir ${docdir}; fi