File: Makefile.am

package info (click to toggle)
librevenge 0.0.5-3
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,572 kB
  • sloc: cpp: 14,349; sh: 4,535; makefile: 361; python: 306; ansic: 87
file content (21 lines) | stat: -rw-r--r-- 513 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
## Process this file with automake to produce Makefile.in

SUBDIRS = auto-load

pythondir = $(datadir)/librevenge/python
nobase_dist_python_DATA = \
	librevenge/__init__.py \
	librevenge/util/__init__.py \
	librevenge/util/compatibility.py \
	librevenge/util/printing.py \
	librevenge/v0_0/__init__.py \
	librevenge/v0_0/streams.py \
	librevenge/v0_0/types.py

clean-local:
	-rm -f \
		librevenge/*.py[co] \
		librevenge/util/*.py[co] \
		librevenge/v0_0/*.py[co]

## vim: set shiftwidth=4 tabstop=4 noexpandtab: