mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 15:49:41 +02:00
These were created by rbdannenberg, in commit 932ca88255a322bff833e3eb4e3931a971aa97d4, but were accidently deleted later in commit bb63fa0d07dad9a9f02b75eda455576e6e8b4da4 (which updated portmidi). I can't say whether they work or not, and even when they were introduced it was stated that they may be wrong. But it's better than not having any automake files at all, and will at least provide a base for them. I didn't add some of the sourcefile changes from the first commit (some were already added to portmidi, and others weren't). Some of them may be needed to get building to work (or, we could update portmidi, if there are any changes upstream). I also didn't add any of the libscorealign changes other than one, since libscorealign already had makefiles (other than the uninstalled one). These configure scripts may be really old; regenerating them is probably a good idea.
46 lines
1.6 KiB
Makefile
46 lines
1.6 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
# Makefile(.in) for portmidi using Autotools (but not libtool).
|
|
# Adapted by Roger Dannenberg from ../portsmf/Makefile.am,
|
|
# 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 -lportmidi_s)
|
|
lib_LIBRARIES = libportmidi_s.a
|
|
|
|
# define the source files to use
|
|
libportmidi_s_a_SOURCES = pm_common/portmidi.c \
|
|
pm_common/pmutil.c \
|
|
porttime/ptlinux.c \
|
|
pm_linux/pmlinuxalsa.c \
|
|
pm_linux/pmlinux.c \
|
|
pm_linux/finddefault.c
|
|
|
|
# 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 = portmidi/portmidi.h \
|
|
# porttime/porttime.h
|
|
|
|
|
|
AM_CFLAGS = -I$(top_srcdir)/pm_common -I$(top_srcdir)/porttime
|
|
|
|
# files that only really viscous cleans remove
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
# other distributed files in case users don't have a complete set of auto*
|
|
AUX_DIST = $(ac_aux_dir)/config.guess \
|
|
$(ac_aux_dir)/config.sub \
|
|
$(ac_aux_dir)/install-sh \
|
|
$(ac_aux_dir)/mdate-sh \
|
|
$(ac_aux_dir)/missing \
|
|
$(ac_aux_dir)/mkinstalldirs \
|
|
$(MAINTAINERCLEANFILES)
|
|
|
|
# Documentation files that should be both distributed and installed in the doc
|
|
# directory,
|
|
dist_doc_DATA = README.txt license.txt
|