File: Makefile.am

package info (click to toggle)
audacity 2.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 129,312 kB
  • sloc: ansic: 373,350; cpp: 276,880; sh: 56,060; python: 18,922; makefile: 10,309; lisp: 8,365; xml: 1,888; perl: 1,798; java: 1,551; asm: 545; pascal: 395; sed: 58; awk: 35
file content (69 lines) | stat: -rw-r--r-- 1,940 bytes parent folder | download | duplicates (2)
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
## Process this file with automake to produce Makefile.in
# Makefile(.in) for portSMF using Autotools (but not libtool).
# Written by Richard Ash following Gary Vaughan's Autobook

# tell aclocal that extra macros can be found in autotools/m4/
ACLOCAL_AMFLAGS = -I autotools/m4

# define the output library (link with -lportSMF)
lib_LIBRARIES = libportSMF.a

# define the source files to use
libportSMF_a_SOURCES = allegro.cpp \
	allegrosmfwr.cpp \
	allegrord.cpp \
	allegrowr.cpp \
	allegrosmfrd.cpp \
	mfmidi.cpp \
	strparse.cpp \
	algrd_internal.h \
	algsmfrd_internal.h

# and the header files for the library. At the moment these go into the include
# directory directly, it would be much better to have them in a subdirectory
# but that would mean re-organising them here (a subdirectory called portSMF to
# keep headers in, add -I$(srcdir)/portSMF/ to AM_CXXFLAGS, change the paths
# to the headers here and change the name of the variable to nobase_include_...
include_HEADERS = allegro.h \
	mfmidi.h \
	strparse.h \
	trace.h

# files that only really viscous cleans remove
MAINTAINERCLEANFILES = Makefile.in

# Documentation files that should be both distributed and installed in the doc
# directory,
dist_doc_DATA = README.txt license.txt

EXTRA_DIST = \
	allegro.htm \
	allegroserial.cpp \
	apps/allegroconvert.cpp \
	apps/allegroconvert.vcproj \
	apps/allegroplay.cpp \
	apps/midicode.h \
	apps/seq2midi.cpp \
	apps/seq2midi.h \
	changelog.txt \
	notes.txt \
	portsmf-VC8.sln \
	portsmf-VC8.vcproj \
	portsmf.sln \
	portsmf.suo \
	portsmf.vcproj \
	portsmf.xcodeproj \
	portsmf.xcodeproj/project.pbxproj \
	portsmf.xcodeproj/rbd.mode1 \
	portsmf_test \
	portsmf_test/Makefile.osx \
	portsmf_test/portsmf_test-VC8.vcproj \
	portsmf_test/portsmf_test.cpp \
	portsmf_test/portsmf_test.vcproj \
	portsmf_test/scale.gro \
	portsmf_test/test.gro \
	portsmf_test/test2.gro \
	portsmf_test/test5.gro \
	todo.txt \
	trace.cpp \
	$(NULL)