Merge branch 'master' of dev.sourcefabric.org:campcaster
Conflicts: application/controllers/ScheduleController.php public/css/styles.css
This commit is contained in:
commit
8f86b05a4b
|
@ -71,6 +71,7 @@
|
||||||
<actionMethod actionName="editShow"/>
|
<actionMethod actionName="editShow"/>
|
||||||
<actionMethod actionName="addShow"/>
|
<actionMethod actionName="addShow"/>
|
||||||
<actionMethod actionName="cancelShow"/>
|
<actionMethod actionName="cancelShow"/>
|
||||||
|
<actionMethod actionName="cancelCurrentShow"/>
|
||||||
</controllerFile>
|
</controllerFile>
|
||||||
<controllerFile controllerName="Api">
|
<controllerFile controllerName="Api">
|
||||||
<actionMethod actionName="index"/>
|
<actionMethod actionName="index"/>
|
||||||
|
@ -338,6 +339,9 @@
|
||||||
<viewControllerScriptsDirectory forControllerName="Recorder">
|
<viewControllerScriptsDirectory forControllerName="Recorder">
|
||||||
<viewScriptFile forActionName="getShowSchedule"/>
|
<viewScriptFile forActionName="getShowSchedule"/>
|
||||||
</viewControllerScriptsDirectory>
|
</viewControllerScriptsDirectory>
|
||||||
|
<viewControllerScriptsDirectory forControllerName="Schedule">
|
||||||
|
<viewScriptFile forActionName="cancelCurrentShow"/>
|
||||||
|
</viewControllerScriptsDirectory>
|
||||||
</viewScriptsDirectory>
|
</viewScriptsDirectory>
|
||||||
<viewHelpersDirectory/>
|
<viewHelpersDirectory/>
|
||||||
<viewFiltersDirectory enabled="false"/>
|
<viewFiltersDirectory enabled="false"/>
|
||||||
|
|
|
@ -23,7 +23,7 @@ require_once 'Users.php';
|
||||||
global $CC_CONFIG, $CC_DBC;
|
global $CC_CONFIG, $CC_DBC;
|
||||||
$dsn = $CC_CONFIG['dsn'];
|
$dsn = $CC_CONFIG['dsn'];
|
||||||
|
|
||||||
$CC_DBC = DB::connect($dsn, TRUE);
|
$CC_DBC = DB::connect($dsn, FALSE);
|
||||||
if (PEAR::isError($CC_DBC)) {
|
if (PEAR::isError($CC_DBC)) {
|
||||||
echo "ERROR: ".$CC_DBC->getMessage()." ".$CC_DBC->getUserInfo()."\n";
|
echo "ERROR: ".$CC_DBC->getMessage()." ".$CC_DBC->getUserInfo()."\n";
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
|
@ -16,6 +16,16 @@ class ApiController extends Zend_Controller_Action
|
||||||
// action body
|
// action body
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns Airtime version. i.e "1.7.0 alpha"
|
||||||
|
*
|
||||||
|
* First checks to ensure the correct API key was
|
||||||
|
* supplied, then returns AIRTIME_VERSION as defined
|
||||||
|
* in application/conf.php
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*
|
||||||
|
*/
|
||||||
public function versionAction()
|
public function versionAction()
|
||||||
{
|
{
|
||||||
global $CC_CONFIG;
|
global $CC_CONFIG;
|
||||||
|
@ -35,7 +45,12 @@ class ApiController extends Zend_Controller_Action
|
||||||
echo $jsonStr;
|
echo $jsonStr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allows remote client to download requested media file.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
* The given value increased by the increment amount.
|
||||||
|
*/
|
||||||
public function getMediaAction()
|
public function getMediaAction()
|
||||||
{
|
{
|
||||||
global $CC_CONFIG;
|
global $CC_CONFIG;
|
||||||
|
@ -67,23 +82,9 @@ class ApiController extends Zend_Controller_Action
|
||||||
|
|
||||||
// !! binary mode !!
|
// !! binary mode !!
|
||||||
$fp = fopen($filepath, 'rb');
|
$fp = fopen($filepath, 'rb');
|
||||||
$mtype = '';
|
|
||||||
|
|
||||||
/*
|
|
||||||
// magic_mime module installed?
|
|
||||||
if (function_exists('mime_content_type')) {
|
|
||||||
$mtype = mime_content_type($file_path);
|
|
||||||
}
|
|
||||||
// fileinfo module installed?
|
|
||||||
else if (function_exists('finfo_file')) {
|
|
||||||
$finfo = finfo_open(FILEINFO_MIME); // return mime type
|
|
||||||
$mtype = finfo_file($finfo, $file_path);
|
|
||||||
finfo_close($finfo);
|
|
||||||
}
|
|
||||||
|
|
||||||
//header("Content-Type: $mtype");
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
// possibly use fileinfo module here in the future.
|
||||||
|
// http://www.php.net/manual/en/book.fileinfo.php
|
||||||
$ext = pathinfo($filename, PATHINFO_EXTENSION);
|
$ext = pathinfo($filename, PATHINFO_EXTENSION);
|
||||||
if ($ext == "ogg")
|
if ($ext == "ogg")
|
||||||
header("Content-Type: audio/ogg");
|
header("Content-Type: audio/ogg");
|
||||||
|
@ -92,17 +93,12 @@ class ApiController extends Zend_Controller_Action
|
||||||
|
|
||||||
|
|
||||||
header("Content-Length: " . filesize($filepath));
|
header("Content-Length: " . filesize($filepath));
|
||||||
//header('Content-Disposition: attachment; filename="'.$media->getRealMetadataFileName().'"');
|
|
||||||
fpassthru($fp);
|
fpassthru($fp);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
else {
|
}
|
||||||
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
|
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
|
||||||
exit;
|
exit;
|
||||||
}
|
|
||||||
} else {
|
|
||||||
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function scheduleAction()
|
public function scheduleAction()
|
||||||
|
|
|
@ -162,12 +162,25 @@ class ScheduleController extends Zend_Controller_Action
|
||||||
|
|
||||||
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/schedule-show-dialog'.$params,
|
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/schedule-show-dialog'.$params,
|
||||||
'callback' => 'window["buildScheduleDialog"]'), 'title' => 'Add Content');
|
'callback' => 'window["buildScheduleDialog"]'), 'title' => 'Add Content');
|
||||||
|
|
||||||
|
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/clear-show'.$params,
|
||||||
|
'callback' => 'window["scheduleRefetchEvents"]'), 'title' => 'Remove All Content');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/show-content-dialog'.$params,
|
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/show-content-dialog'.$params,
|
||||||
'callback' => 'window["buildContentDialog"]'), 'title' => 'Show Content');
|
'callback' => 'window["buildContentDialog"]'), 'title' => 'Show Content');
|
||||||
|
|
||||||
|
|
||||||
|
if (strtotime($show->getShowStart()) <= strtotime($today_timestamp) &&
|
||||||
|
strtotime($today_timestamp) < strtotime($show->getShowEnd())) {
|
||||||
|
$menu[] = array('action' => array('type' => 'fn',
|
||||||
|
//'url' => '/Schedule/cancel-current-show'.$params,
|
||||||
|
'callback' => "window['confirmCancelShow']($id)"),
|
||||||
|
'title' => 'Cancel Current Show');
|
||||||
|
}
|
||||||
|
|
||||||
if (strtotime($today_timestamp) < strtotime($show->getShowStart())) {
|
if (strtotime($today_timestamp) < strtotime($show->getShowStart())) {
|
||||||
|
|
||||||
if ($user->isAdmin()) {
|
if ($user->isAdmin()) {
|
||||||
|
@ -177,12 +190,6 @@ class ScheduleController extends Zend_Controller_Action
|
||||||
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/cancel-show'.$params,
|
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/cancel-show'.$params,
|
||||||
'callback' => 'window["scheduleRefetchEvents"]'), 'title' => 'Delete This Instance and All Following');
|
'callback' => 'window["scheduleRefetchEvents"]'), 'title' => 'Delete This Instance and All Following');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($user->isHost($show->getShowId()) || $user->isAdmin()) {
|
|
||||||
|
|
||||||
$menu[] = array('action' => array('type' => 'ajax', 'url' => '/Schedule/clear-show'.$params,
|
|
||||||
'callback' => 'window["scheduleRefetchEvents"]'), 'title' => 'Remove All Content');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//returns format jjmenu is looking for.
|
//returns format jjmenu is looking for.
|
||||||
|
@ -421,6 +428,19 @@ class ScheduleController extends Zend_Controller_Action
|
||||||
$show->cancelShow($showInstance->getShowStart());
|
$show->cancelShow($showInstance->getShowStart());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function cancelCurrentShowAction()
|
||||||
|
{
|
||||||
|
$userInfo = Zend_Auth::getInstance()->getStorage()->read();
|
||||||
|
$user = new User($userInfo->id);
|
||||||
|
|
||||||
|
if($user->isAdmin()) {
|
||||||
|
$showInstanceId = $this->_getParam('id');
|
||||||
|
$show = new ShowInstance($showInstanceId);
|
||||||
|
$show->clearShow();
|
||||||
|
$show->deleteShow();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -81,7 +81,7 @@ class Application_Form_AddUser extends Zend_Form
|
||||||
$submit = new Zend_Form_Element_Submit('submit');
|
$submit = new Zend_Form_Element_Submit('submit');
|
||||||
$submit->setAttrib('class', 'ui-button ui-state-default right-floated');
|
$submit->setAttrib('class', 'ui-button ui-state-default right-floated');
|
||||||
$submit->setIgnore(true);
|
$submit->setIgnore(true);
|
||||||
$submit->setLabel('submit');
|
$submit->setLabel('Submit');
|
||||||
$this->addElement($submit);
|
$this->addElement($submit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,6 @@ class Application_Form_Preferences extends Zend_Form
|
||||||
$stream_format->setLabel('Stream Label:');
|
$stream_format->setLabel('Stream Label:');
|
||||||
$stream_format->setMultiOptions(array("Artist - Title",
|
$stream_format->setMultiOptions(array("Artist - Title",
|
||||||
"Show - Artist - Title",
|
"Show - Artist - Title",
|
||||||
"Show",
|
|
||||||
"Station name - Show name"));
|
"Station name - Show name"));
|
||||||
$stream_format->setValue(Application_Model_Preference::GetStreamLabelFormat());
|
$stream_format->setValue(Application_Model_Preference::GetStreamLabelFormat());
|
||||||
$this->addElement($stream_format);
|
$this->addElement($stream_format);
|
||||||
|
|
|
@ -82,7 +82,11 @@ class Application_Model_Nowplaying
|
||||||
$type = "n";
|
$type = "n";
|
||||||
}
|
}
|
||||||
|
|
||||||
array_push($data, array($type, $item["item_starts"], $item["item_starts"], $item["item_ends"], $item["clip_length"], $item["track_title"], $item["artist_name"], $item["album_title"], $item["playlist_name"], $item["show_name"], $item["instance_id"]));
|
$over = "";
|
||||||
|
if (strtotime($item['item_ends']) > strtotime($item['show_ends']))
|
||||||
|
$over = "x";
|
||||||
|
|
||||||
|
array_push($data, array($type, $item["item_starts"], $item["item_starts"], $item["item_ends"], $item["clip_length"], $item["track_title"], $item["artist_name"], $item["album_title"], $item["playlist_name"], $item["show_name"], $over, $item["instance_id"]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -733,7 +733,8 @@ class Schedule {
|
||||||
}
|
}
|
||||||
|
|
||||||
$result = array();
|
$result = array();
|
||||||
$result['status'] = array('range' => array('start' => $range_start, 'end' => $range_end), 'version' => "1.1");
|
$result['status'] = array('range' => array('start' => $range_start, 'end' => $range_end),
|
||||||
|
'version' => "1.1");
|
||||||
$result['playlists'] = $playlists;
|
$result['playlists'] = $playlists;
|
||||||
$result['check'] = 1;
|
$result['check'] = 1;
|
||||||
|
|
||||||
|
|
|
@ -795,7 +795,7 @@ class Show_DAL{
|
||||||
$date = $timestamp[0];
|
$date = $timestamp[0];
|
||||||
$time = $timestamp[1];
|
$time = $timestamp[1];
|
||||||
|
|
||||||
$sql = "SELECT si.starts as start_timestamp, si.ends as end_timestamp, s.name, s.id, si.id as instance_id"
|
$sql = "SELECT si.starts as start_timestamp, si.ends as end_timestamp, s.name, s.id, si.id as instance_id, si.record"
|
||||||
." FROM $CC_CONFIG[showInstances] si, $CC_CONFIG[showTable] s"
|
." FROM $CC_CONFIG[showInstances] si, $CC_CONFIG[showTable] s"
|
||||||
." WHERE si.show_id = s.id"
|
." WHERE si.show_id = s.id"
|
||||||
." AND si.starts <= TIMESTAMP '$timeNow'"
|
." AND si.starts <= TIMESTAMP '$timeNow'"
|
||||||
|
@ -846,6 +846,7 @@ class Show_DAL{
|
||||||
." WHERE ((si.starts < TIMESTAMP '$timeNow' - INTERVAL '$start seconds' AND si.ends > TIMESTAMP '$timeNow' - INTERVAL '$start seconds')"
|
." WHERE ((si.starts < TIMESTAMP '$timeNow' - INTERVAL '$start seconds' AND si.ends > TIMESTAMP '$timeNow' - INTERVAL '$start seconds')"
|
||||||
." OR (si.starts > TIMESTAMP '$timeNow' - INTERVAL '$start seconds' AND si.ends < TIMESTAMP '$timeNow' + INTERVAL '$end seconds')"
|
." OR (si.starts > TIMESTAMP '$timeNow' - INTERVAL '$start seconds' AND si.ends < TIMESTAMP '$timeNow' + INTERVAL '$end seconds')"
|
||||||
." OR (si.starts < TIMESTAMP '$timeNow' + INTERVAL '$end seconds' AND si.ends > TIMESTAMP '$timeNow' + INTERVAL '$end seconds'))"
|
." OR (si.starts < TIMESTAMP '$timeNow' + INTERVAL '$end seconds' AND si.ends > TIMESTAMP '$timeNow' + INTERVAL '$end seconds'))"
|
||||||
|
//checking for st.starts IS NULL so that the query also returns shows that do not have any items scheduled.
|
||||||
." AND (st.starts < si.ends OR st.starts IS NULL)"
|
." AND (st.starts < si.ends OR st.starts IS NULL)"
|
||||||
." ORDER BY st.starts";
|
." ORDER BY st.starts";
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,17 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="text-row next-song"><strong>Next:</strong> <span id='next'></span> <span id='next-length'></span></div>
|
<div class="text-row next-song"><strong>Next:</strong> <span id='next'></span> <span id='next-length'></span></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="show-block">
|
<div class="show-block">
|
||||||
<div class="text-row"> </div>
|
<div class="text-row"> </div>
|
||||||
<div class="now-playing-info show"> <span id='playlist'></span> <span class="length" id="show-length"></span> </div>
|
<div class="now-playing-info show">
|
||||||
<div class="progressbar">
|
<div class="recording-show" style="display: none;"></div>
|
||||||
<div class="progress-show" id='progress-show' style="width:0%;"></div>
|
<span id="playlist"></span>
|
||||||
|
<span class="lenght">00:00</span>
|
||||||
|
</div>
|
||||||
|
<div class="progressbar">
|
||||||
|
<div class="progress-show" id='progress-show' style="width:0%;"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="on-air-block">
|
<div class="on-air-block">
|
||||||
<div class="on-air-info off" id="on-air-info">ON AIR</div>
|
<div class="on-air-info off" id="on-air-info">ON AIR</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
<br /><br /><center>View script for controller <b>Schedule</b> and script/action name <b>cancelCurrentShow</b></center>
|
|
@ -1,13 +1,13 @@
|
||||||
<div class=
|
<div class=
|
||||||
"ui-widget ui-widget-content block-shadow clearfix padded-strong user-management">
|
"ui-widget ui-widget-content block-shadow clearfix padded-strong user-management">
|
||||||
<h2>
|
<h2>
|
||||||
Manage users
|
Manage Users
|
||||||
</h2>
|
</h2>
|
||||||
<div class="user-list-wrapper">
|
<div class="user-list-wrapper">
|
||||||
<div id="users_wrapper" class="dataTables_wrapper">
|
<div id="users_wrapper" class="dataTables_wrapper">
|
||||||
|
|
||||||
<div class="button-holder">
|
<div class="button-holder">
|
||||||
<button type="button" id="add_user_button" name="search_add_group" class="ui-button ui-widget ui-state-default ui-button-text-icon-primary"><span class="ui-button-text">New user</span></button>
|
<button type="button" id="add_user_button" name="search_add_group" class="ui-button ui-widget ui-state-default ui-button-text-icon-primary"><span class="ui-button-text">New User</span></button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table cellspacing="0" cellpadding="0" style="" id="users_datatable" class="datatable">
|
<table cellspacing="0" cellpadding="0" style="" id="users_datatable" class="datatable">
|
||||||
|
@ -15,8 +15,8 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th>id</th>
|
<th>id</th>
|
||||||
<th>Username</th>
|
<th>Username</th>
|
||||||
<th>Firstname</th>
|
<th>First Name</th>
|
||||||
<th>Lastname</th>
|
<th>Last Name</th>
|
||||||
<th>Role</th>
|
<th>Role</th>
|
||||||
<th> </th>
|
<th> </th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
# Upstream uses realtive paths to data folders, so we use
|
|
||||||
# syminks to /var/campcaster/.. where persistant data is stored
|
|
||||||
campcaster-data: package-contains-empty-directory usr/share/campcaster/www/htmlUI/var/templates_c/
|
|
||||||
campcaster-data: package-contains-empty-directory usr/share/campcaster/www/storageServer/var/access/
|
|
||||||
campcaster-data: package-contains-empty-directory usr/share/campcaster/www/storageServer/var/stor/buffer/
|
|
||||||
campcaster-data: package-contains-empty-directory usr/share/campcaster/www/storageServer/var/trans/
|
|
||||||
# Upstream uses a patched/customized version of Smarty - but is
|
|
||||||
# working on getting solving issue to move to a maintained one.
|
|
||||||
campcaster-data: embedded-php-library usr/share/campcaster/www/htmlUI/var/Smarty/libs/Smarty_Compiler.class.php
|
|
||||||
campcaster-data: embedded-php-library usr/share/campcaster/www/htmlUI/var/Smarty/libs/Smarty.class.php
|
|
|
@ -1,52 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# prerm script for campcaster
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# summary of how this script can be called:
|
|
||||||
# * <prerm> `remove'
|
|
||||||
# * <old-prerm> `upgrade' <new-version>
|
|
||||||
# * <new-prerm> `failed-upgrade' <old-version>
|
|
||||||
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
|
|
||||||
# * <deconfigured's-prerm> `deconfigure' `in-favour'
|
|
||||||
# <package-being-installed> <version> `removing'
|
|
||||||
# <conflicting-package> <version>
|
|
||||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
||||||
# the debian-policy package
|
|
||||||
|
|
||||||
|
|
||||||
installdir=/
|
|
||||||
vardir=/var/lib/campcaster/
|
|
||||||
ls_database=Campcaster
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
remove|upgrade|deconfigure)
|
|
||||||
mkdir -p $vardir
|
|
||||||
|
|
||||||
# remove generated files
|
|
||||||
rm -rf $vardir/htmlUI/var/html/img/*
|
|
||||||
rm -rf $vardir/htmlUI/var/templates_c/*
|
|
||||||
rm -rf $vardir/storageServer/var/access/*
|
|
||||||
rm -rf $vardir/storageServer/var/trans/*
|
|
||||||
|
|
||||||
##rm -rf $installdir/etc/pear.conf
|
|
||||||
|
|
||||||
;;
|
|
||||||
|
|
||||||
failed-upgrade)
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "prerm called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
|
@ -1,68 +0,0 @@
|
||||||
.\" Hey, EMACS: -*- nroff -*-
|
|
||||||
.\" URL Macro
|
|
||||||
.de URL
|
|
||||||
\\$2 \(laURL: \\$1 \(ra\\$3
|
|
||||||
..
|
|
||||||
.if \n[.g] .mso www.tmac
|
|
||||||
.\"
|
|
||||||
.\" First parameter, NAME, should be all caps
|
|
||||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
|
||||||
.\" other parameters are allowed: see man(7), man(1)
|
|
||||||
.TH CAMPCASTER\-IMPORT 1 "October 5, 2010"
|
|
||||||
.\" Please adjust this date whenever revising the manpage.
|
|
||||||
.\"
|
|
||||||
.\" Some roff macros, for reference:
|
|
||||||
.\" .nh disable hyphenation
|
|
||||||
.\" .hy enable hyphenation
|
|
||||||
.\" .ad l left justify
|
|
||||||
.\" .ad b justify to both left and right margins
|
|
||||||
.\" .nf disable filling
|
|
||||||
.\" .fi enable filling
|
|
||||||
.\" .br insert line break
|
|
||||||
.\" .sp <n> insert n+1 empty lines
|
|
||||||
.\" for manpage-specific macros, see man(7)
|
|
||||||
.nh
|
|
||||||
.SH NAME
|
|
||||||
campcaster-import \- batch upload files to Campcaster storage
|
|
||||||
.SH SYNOPSIS
|
|
||||||
.B campcaster-import
|
|
||||||
.RI "[-h] -l|-c" " FILES_OR_DIRS"
|
|
||||||
.SH DESCRIPTION
|
|
||||||
This tool enables users to batch upload audio files to the Campcaster storage server.
|
|
||||||
There are two ways to import audio files into Campcaster: linking or copying.
|
|
||||||
You need to specify how to import the files by using either
|
|
||||||
.B \-l
|
|
||||||
(link) or
|
|
||||||
.B -c
|
|
||||||
(copy) option.
|
|
||||||
.B -h
|
|
||||||
will print further help information.
|
|
||||||
.PP
|
|
||||||
Linking has the advantage that it will not duplicate any files,
|
|
||||||
but you must take care not to move, rename, or delete any of the
|
|
||||||
imported files from their current locations on disk.
|
|
||||||
.PP
|
|
||||||
Copying has the advantage that you can do whatever you like with
|
|
||||||
the source files after you import them, but has the disadvantage
|
|
||||||
that it requires double the disk space needed to store your files.
|
|
||||||
.PP
|
|
||||||
Campcaster is free and open radio management software, providing
|
|
||||||
live studio broadcast capabilities as well as the remote automation in one
|
|
||||||
integrated system. The scalability of Campcaster allows implementation in a
|
|
||||||
number of use scenarios, ranging from an unmanned broadcast unit accessed
|
|
||||||
via the Internet to a local network of Campcaster machines inside a
|
|
||||||
radio station handling live broadcasts and delivering program automation by
|
|
||||||
accessing a central audio storage system. Campcaster is capable of combining
|
|
||||||
local audio files and remote web streams, supporting the widely used MP3 format
|
|
||||||
and the open equivalent OGG Vorbis.
|
|
||||||
.SH SEE ALSO
|
|
||||||
.URL "http://en.flossmanuals.net/campcaster/" "Online manual" ,
|
|
||||||
.br
|
|
||||||
.BR campcaster-scheduler (1).
|
|
||||||
.SH AUTHOR
|
|
||||||
Campcaster was written by Sourcefabric with the support of the Media Develoment
|
|
||||||
Loan Fund. For full credits see the
|
|
||||||
.URL "http://campcaster.sourcefabric.org/" "Campcaster homepage" .
|
|
||||||
.PP
|
|
||||||
This manual page was written by Robin Gareus <robin@gareus.org>,
|
|
||||||
for the Debian project (and may be used by others).
|
|
|
@ -1 +0,0 @@
|
||||||
usr/lib
|
|
|
@ -1,9 +0,0 @@
|
||||||
# Campcaster has a job opening for someone to
|
|
||||||
# refactor code to use standard PEAR classes.
|
|
||||||
# see http://www.campware.org/en/camp/about_campware/696/ for details.
|
|
||||||
#
|
|
||||||
# Note that the embedded-pear-modules are unpatched upstream
|
|
||||||
# versions - they're just included for version compatibiliy issues
|
|
||||||
campcaster-libs: embedded-pear-module usr/lib/campcaster/pear/PEAR/Command/Auth.php
|
|
||||||
campcaster-libs: embedded-pear-module usr/lib/campcaster/pear/PEAR/Command/Config.php
|
|
||||||
campcaster-libs: embedded-pear-module usr/lib/campcaster/pear/PEAR/Config.php
|
|
|
@ -1,58 +0,0 @@
|
||||||
.\" Hey, EMACS: -*- nroff -*-
|
|
||||||
.\" URL Macro
|
|
||||||
.de URL
|
|
||||||
\\$2 \(laURL: \\$1 \(ra\\$3
|
|
||||||
..
|
|
||||||
.if \n[.g] .mso www.tmac
|
|
||||||
.\"
|
|
||||||
.\" First parameter, NAME, should be all caps
|
|
||||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
|
||||||
.\" other parameters are allowed: see man(7), man(1)
|
|
||||||
.TH CAMPCASTER\-SCHEDULER 1 "October 5, 2010"
|
|
||||||
.\" Please adjust this date whenever revising the manpage.
|
|
||||||
.\"
|
|
||||||
.\" Some roff macros, for reference:
|
|
||||||
.\" .nh disable hyphenation
|
|
||||||
.\" .hy enable hyphenation
|
|
||||||
.\" .ad l left justify
|
|
||||||
.\" .ad b justify to both left and right margins
|
|
||||||
.\" .nf disable filling
|
|
||||||
.\" .fi enable filling
|
|
||||||
.\" .br insert line break
|
|
||||||
.\" .sp <n> insert n+1 empty lines
|
|
||||||
.\" for manpage-specific macros, see man(7)
|
|
||||||
.nh
|
|
||||||
.SH NAME
|
|
||||||
campcaster-scheduler \- Script controlling the Campcaster scheduling daemon
|
|
||||||
.SH SYNOPSIS
|
|
||||||
.B campcaster-scheduler
|
|
||||||
.RI start|stop|restart|status|install|uninstall|kill
|
|
||||||
.SH DESCRIPTION
|
|
||||||
This script controls the Campcaster scheduler daemon, which is usually
|
|
||||||
launched during boot with administrator privileges. However, this tool is also used to
|
|
||||||
query the current status of the server or perform administrative tasks.
|
|
||||||
.PP
|
|
||||||
The scheduler daemon starts playlists at their designated time and provides an
|
|
||||||
XML-RPC interface, which can be accessed via the Campcaster web interface or via the
|
|
||||||
campcaster-studio GUI.
|
|
||||||
.PP
|
|
||||||
Campcaster is free and open radio management software, providing
|
|
||||||
live studio broadcast capabilities as well as the remote automation in one
|
|
||||||
integrated system. The scalability of Campcaster allows implementation in a
|
|
||||||
number of use scenarios, ranging from an unmanned broadcast unit accessed via
|
|
||||||
the Internet to a local network of Campcaster machines inside a
|
|
||||||
radio station handling live broadcasts and delivering program automation by
|
|
||||||
accessing a central audio storage system. Campcaster is capable of combining
|
|
||||||
local audio files and remote web streams, supporting the widely used MP3 format
|
|
||||||
and the open equivalent OGG Vorbis.
|
|
||||||
.SH SEE ALSO
|
|
||||||
.URL "http://en.flossmanuals.net/campcaster/" "Online manual",
|
|
||||||
.br
|
|
||||||
.BR campcaster-import (1).
|
|
||||||
.SH AUTHOR
|
|
||||||
Campcaster was written by Sourcefabric, with the support of the Media Develoment
|
|
||||||
Loan Fund. For full credits see the
|
|
||||||
.URL "http://campcaster.sourcefabric.org/" "Campcaster homepage".
|
|
||||||
.PP
|
|
||||||
This manual page was written by Robin Gareus <robin@gareus.org>,
|
|
||||||
for the Debian project (and may be used by others).
|
|
|
@ -1,10 +0,0 @@
|
||||||
# Defaults for campcaster initscript
|
|
||||||
# sourced by /etc/init.d/campcaster-station
|
|
||||||
# installed at /etc/default/campcaster by the maintainer scripts
|
|
||||||
|
|
||||||
#
|
|
||||||
# This is a POSIX shell fragment
|
|
||||||
#
|
|
||||||
|
|
||||||
# Additional options that are passed to the Daemon.
|
|
||||||
DAEMON_OPTS=""
|
|
|
@ -1,3 +0,0 @@
|
||||||
etc
|
|
||||||
usr/bin
|
|
||||||
usr/lib
|
|
|
@ -1,163 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
### BEGIN INIT INFO
|
|
||||||
# Provides: campcaster-station
|
|
||||||
# Required-Start: $remote_fs $network $local_fs apache postgres
|
|
||||||
# Required-Stop: $remote_fs
|
|
||||||
# Should-Start: $named
|
|
||||||
# Should-Stop:
|
|
||||||
# Default-Start: 2 3 4 5
|
|
||||||
# Default-Stop: 0 1 6
|
|
||||||
# Short-Description: campcaster-scheduler
|
|
||||||
# Description: A radio program automation and support tool.
|
|
||||||
### END INIT INFO
|
|
||||||
|
|
||||||
|
|
||||||
CAMPCASTER_BIN=/usr/lib/campcaster/bin
|
|
||||||
CAMPCASTER_LIB=/usr/lib/campcaster/
|
|
||||||
CAMPCASTER_ETC=/etc
|
|
||||||
|
|
||||||
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:$CAMPCASTER_BIN
|
|
||||||
LD_LIBRARY_PATH=$CAMPCASTER_LIB:$LD_LIBRARY_PATH
|
|
||||||
DAEMON=$CAMPCASTER_BIN/campcaster-scheduler
|
|
||||||
NAME=campcaster-station
|
|
||||||
DESC="campcaster scheduler"
|
|
||||||
|
|
||||||
test -x $DAEMON || exit 0
|
|
||||||
|
|
||||||
export PATH
|
|
||||||
export LD_LIBRARY_PATH
|
|
||||||
|
|
||||||
LOGDIR=/var/log/campcaster
|
|
||||||
PIDFILE=/var/run/$NAME.pid # defined in /etc/campcaster-scheduler.xml
|
|
||||||
DODTIME=3 # Time to wait for the server to die, in seconds
|
|
||||||
# If this value is set too low you might not
|
|
||||||
# let some servers to die gracefully and
|
|
||||||
# 'restart' will not work
|
|
||||||
|
|
||||||
# Include campcaster defaults if available
|
|
||||||
if [ -f /etc/default/campcaster ] ; then
|
|
||||||
. /etc/default/campcaster
|
|
||||||
fi
|
|
||||||
|
|
||||||
test -z "$DAEMON_OPTS" && \
|
|
||||||
DAEMON_OPTS="-c $CAMPCASTER_ETC/campcaster-scheduler.xml"
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
running_pid()
|
|
||||||
{
|
|
||||||
# Check if a given process pid's cmdline matches a given name
|
|
||||||
pid=$1
|
|
||||||
name=$2
|
|
||||||
[ -z "$pid" ] && return 1
|
|
||||||
[ ! -d /proc/$pid ] && return 1
|
|
||||||
cmd=`cat /proc/$pid/cmdline | tr "\000" "\n"|head -n 1 |cut -d : -f 1`
|
|
||||||
# Is this the expected child?
|
|
||||||
[ "$cmd" != "$name" ] && return 1
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
running()
|
|
||||||
{
|
|
||||||
# Check if the process is running looking at /proc
|
|
||||||
# (works for all users)
|
|
||||||
|
|
||||||
# No pidfile, probably no daemon present
|
|
||||||
[ ! -f "$PIDFILE" ] && return 1
|
|
||||||
# Obtain the pid and check it against the binary name
|
|
||||||
pid=`cat $PIDFILE`
|
|
||||||
running_pid $pid $DAEMON || return 1
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
force_stop() {
|
|
||||||
# Forcefully kill the process
|
|
||||||
[ ! -f "$PIDFILE" ] && return
|
|
||||||
if running ; then
|
|
||||||
kill -15 $pid
|
|
||||||
# Is it really dead?
|
|
||||||
[ -n "$DODTIME" ] && sleep "$DODTIME"s
|
|
||||||
if running ; then
|
|
||||||
kill -9 $pid
|
|
||||||
[ -n "$DODTIME" ] && sleep "$DODTIME"s
|
|
||||||
if running ; then
|
|
||||||
echo "Cannot kill $NAME (pid=$pid)!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
rm -f $PIDFILE
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
start)
|
|
||||||
echo -n "Starting $DESC: "
|
|
||||||
$DAEMON $DAEMON_OPTS start 2>/dev/null
|
|
||||||
if running ; then
|
|
||||||
echo "$NAME."
|
|
||||||
else
|
|
||||||
echo " ERROR."
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
stop)
|
|
||||||
echo -n "Stopping $DESC: "
|
|
||||||
$DAEMON $DAEMON_OPTS stop 2>/dev/null
|
|
||||||
echo "$NAME."
|
|
||||||
;;
|
|
||||||
force-stop)
|
|
||||||
echo -n "Forcefully stopping $DESC: "
|
|
||||||
force_stop
|
|
||||||
if ! running ; then
|
|
||||||
echo "$NAME."
|
|
||||||
else
|
|
||||||
echo " ERROR."
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
#reload)
|
|
||||||
#
|
|
||||||
# If the daemon can reload its config files on the fly
|
|
||||||
# for example by sending it SIGHUP, do it here.
|
|
||||||
#
|
|
||||||
# If the daemon responds to changes in its config file
|
|
||||||
# directly anyway, make this a do-nothing entry.
|
|
||||||
#
|
|
||||||
# echo "Reloading $DESC configuration files."
|
|
||||||
# start-stop-daemon --stop --signal 1 --quiet --pidfile \
|
|
||||||
# /var/run/$NAME.pid --exec $DAEMON
|
|
||||||
#;;
|
|
||||||
force-reload)
|
|
||||||
#
|
|
||||||
# If the "reload" option is implemented, move the "force-reload"
|
|
||||||
# option to the "reload" entry above. If not, "force-reload" is
|
|
||||||
# just the same as "restart" except that it does nothing if the
|
|
||||||
# daemon isn't already running.
|
|
||||||
# check wether $DAEMON is running. If so, restart
|
|
||||||
if running ; then
|
|
||||||
$0 restart || exit 0
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
restart)
|
|
||||||
echo -n "Restarting $DESC: "
|
|
||||||
$DAEMON $DAEMON_OPTS stop 2>/dev/null
|
|
||||||
[ -n "$DODTIME" ] && sleep $DODTIME
|
|
||||||
$DAEMON $DAEMON_OPTS start 2>/dev/null
|
|
||||||
echo "$NAME."
|
|
||||||
;;
|
|
||||||
status)
|
|
||||||
echo -n "$NAME is "
|
|
||||||
if running ; then
|
|
||||||
echo "running"
|
|
||||||
else
|
|
||||||
echo "not running."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
N=/etc/init.d/$NAME
|
|
||||||
echo "Usage: $N {start|stop|restart|force-reload|status|force-stop}" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
exit 0
|
|
|
@ -1,2 +0,0 @@
|
||||||
debian/campcaster-scheduler.1
|
|
||||||
debian/campcaster-import.1
|
|
|
@ -1,72 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# postinst script for campcaster
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# summary of how this script can be called:
|
|
||||||
# * <postinst> `configure' <most-recently-configured-version>
|
|
||||||
# * <old-postinst> `abort-upgrade' <new version>
|
|
||||||
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
|
||||||
# <new-version>
|
|
||||||
# * <postinst> `abort-remove'
|
|
||||||
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
|
||||||
# <failed-install-package> <version> `removing'
|
|
||||||
# <conflicting-package> <version>
|
|
||||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
||||||
# the debian-policy package
|
|
||||||
|
|
||||||
installdir=/usr/lib/campcaster
|
|
||||||
vardir=/var/lib/campcaster
|
|
||||||
apache_group=www-data
|
|
||||||
|
|
||||||
if [ -d /etc/postgresql/8.1 ]; then
|
|
||||||
postgresql_dir=/etc/postgresql/8.1/main
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.1
|
|
||||||
elif [ -d /etc/postgresql/8.2 ]; then
|
|
||||||
postgresql_dir=/etc/postgresql/8.2/main
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.2
|
|
||||||
elif [ -d /etc/postgresql/8.3 ]; then
|
|
||||||
postgresql_dir=/etc/postgresql/8.3/main
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.3
|
|
||||||
elif [ -d /etc/postgresql/8.4 ]; then
|
|
||||||
postgresql_dir=/etc/postgresql/8.4/main
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.4
|
|
||||||
else
|
|
||||||
echo "no postgresql 8.1, 8.2, 8.3 or 8.4 found" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
configure)
|
|
||||||
# do post-installation configuration
|
|
||||||
$installdir/bin/postInstallStation.sh --directory=$installdir \
|
|
||||||
--apache-group=$apache_group \
|
|
||||||
--postgresql-dir=$postgresql_dir \
|
|
||||||
--postgresql-init-script=$postgresql_init_script
|
|
||||||
|
|
||||||
# remount the NFS share if we have a 2-computer setup
|
|
||||||
if [ -f $vardir/storageServer.wasMounted ]; then
|
|
||||||
echo "Remounting the remote storage..."
|
|
||||||
mount $vardir/storageServer
|
|
||||||
rm $vardir/storageServer.wasMounted
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
|
|
||||||
abort-upgrade|abort-remove|abort-deconfigure)
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "postinst called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
|
@ -1,94 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# postrm script for campcaster
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# summary of how this script can be called:
|
|
||||||
# * <postrm> `remove'
|
|
||||||
# * <postrm> `purge'
|
|
||||||
# * <old-postrm> `upgrade' <new-version>
|
|
||||||
# * <new-postrm> `failed-upgrade' <old-version>
|
|
||||||
# * <new-postrm> `abort-install'
|
|
||||||
# * <new-postrm> `abort-install' <old-version>
|
|
||||||
# * <new-postrm> `abort-upgrade' <old-version>
|
|
||||||
# * <disappearer's-postrm> `disappear' <overwriter>
|
|
||||||
# <overwriter-version>
|
|
||||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
||||||
# the debian-policy package
|
|
||||||
|
|
||||||
vardir=/var/lib/campcaster
|
|
||||||
|
|
||||||
|
|
||||||
if [ -d /etc/postgresql/8.1 ]; then
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.1
|
|
||||||
elif [ -d /etc/postgresql/8.2 ]; then
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.2
|
|
||||||
elif [ -d /etc/postgresql/8.3 ]; then
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.3
|
|
||||||
elif [ -d /etc/postgresql/8.4 ]; then
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.4
|
|
||||||
else
|
|
||||||
echo "no postgresql 8.1, 8.2, 8.3 or 8.4 found" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
postgres_user=postgres
|
|
||||||
|
|
||||||
ls_database=Campcaster
|
|
||||||
ls_dbuser=campcaster
|
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Function to check for the existence of an executable on the PATH
|
|
||||||
#
|
|
||||||
# @param $1 the name of the exectuable
|
|
||||||
# @return 0 if the executable exists on the PATH, non-0 otherwise
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
check_exe() {
|
|
||||||
if [ -x "`which $1 2> /dev/null`" ]; then
|
|
||||||
return 0;
|
|
||||||
else
|
|
||||||
return 1;
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
remove|upgrade|failed-upgrade|abort-install|abort-upgrade)
|
|
||||||
;;
|
|
||||||
|
|
||||||
purge|disappear)
|
|
||||||
# check for the required tools
|
|
||||||
check_exe "psql" || psql_found=no
|
|
||||||
|
|
||||||
if [ "x$psql_found" != "xno" ] ; then
|
|
||||||
# kill open connections to the Campcaster database
|
|
||||||
$postgresql_init_script stop
|
|
||||||
$postgresql_init_script start
|
|
||||||
|
|
||||||
# remove the PostgreSQL database and user
|
|
||||||
su - $postgres_user -c \
|
|
||||||
"echo \"DROP DATABASE \\\"$ls_database\\\" \" | psql template1" \
|
|
||||||
|| echo "Couldn't drop database $ls_database.";
|
|
||||||
su - $postgres_user -c \
|
|
||||||
"echo \"DROP USER $ls_dbuser \" | psql template1" \
|
|
||||||
|| echo "Couldn't drop database user $ls_dbuser.";
|
|
||||||
fi
|
|
||||||
|
|
||||||
# remove generated files
|
|
||||||
rm -rf $vardir/
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "postrm called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
|
@ -1,109 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# prerm script for campcaster
|
|
||||||
#
|
|
||||||
# see: dh_installdeb(1)
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# summary of how this script can be called:
|
|
||||||
# * <prerm> `remove'
|
|
||||||
# * <old-prerm> `upgrade' <new-version>
|
|
||||||
# * <new-prerm> `failed-upgrade' <old-version>
|
|
||||||
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
|
|
||||||
# * <deconfigured's-prerm> `deconfigure' `in-favour'
|
|
||||||
# <package-being-installed> <version> `removing'
|
|
||||||
# <conflicting-package> <version>
|
|
||||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
|
||||||
# the debian-policy package
|
|
||||||
|
|
||||||
|
|
||||||
installdir=/
|
|
||||||
vardir=/var/lib/campcaster/
|
|
||||||
ls_database=Campcaster
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Function to check for the existence of an executable on the PATH
|
|
||||||
#
|
|
||||||
# @param $1 the name of the exectuable
|
|
||||||
# @return 0 if the executable exists on the PATH, non-0 otherwise
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
check_exe() {
|
|
||||||
if [ -x "`which $1 2> /dev/null`" ]; then
|
|
||||||
return 0;
|
|
||||||
else
|
|
||||||
return 1;
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if [ -d /etc/postgresql/8.1 ]; then
|
|
||||||
postgresql_dir=/etc/postgresql/8.1/main
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.1
|
|
||||||
elif [ -d /etc/postgresql/8.2 ]; then
|
|
||||||
postgresql_dir=/etc/postgresql/8.2/main
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.2
|
|
||||||
elif [ -d /etc/postgresql/8.3 ]; then
|
|
||||||
postgresql_dir=/etc/postgresql/8.3/main
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.3
|
|
||||||
elif [ -d /etc/postgresql/8.4 ]; then
|
|
||||||
postgresql_dir=/etc/postgresql/8.4/main
|
|
||||||
postgresql_init_script=/etc/init.d/postgresql-8.4
|
|
||||||
else
|
|
||||||
echo "no postgresql 8.1, 8.2, 8.3 or 8.4 found" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
remove|deconfigure)
|
|
||||||
cd /usr/share/campcaster/www/htmlUI/var/install/
|
|
||||||
php -q uninstall.php
|
|
||||||
cd /usr/share/campcaster/www/storageServer/var/install/
|
|
||||||
php -q uninstall.php
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
remove|upgrade|deconfigure)
|
|
||||||
mkdir -p $vardir
|
|
||||||
# unmount the NFS share, if we have a 2-computer setup
|
|
||||||
storagedir=$vardir/storageServer
|
|
||||||
if [ "`mount | grep -o \"on $storagedir \"`" = "on $storagedir " ]; then
|
|
||||||
echo "Unmounting the remote storage..."
|
|
||||||
umount $storagedir
|
|
||||||
touch $vardir/storageServer.wasMounted
|
|
||||||
fi
|
|
||||||
|
|
||||||
## remove the ODBC data source and driver
|
|
||||||
check_exe "odbcinst" || odbcinst_found=no
|
|
||||||
|
|
||||||
if [ "x$odbcinst_found" != "xno" ] ; then
|
|
||||||
odbcinst -u -s -l -n $ls_database
|
|
||||||
odbcinst -u -d -n PostgreSQL_Campcaster
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -f /etc/apache/conf.d/90_php_campcaster.conf
|
|
||||||
rm -f /etc/apache2/conf.d/90_php_campcaster.conf
|
|
||||||
rm -f /etc/apache2/conf/modules.d/90_php_campcaster.conf
|
|
||||||
rm -f /etc/httpd/conf.d/90_php_campcaster.conf
|
|
||||||
|
|
||||||
##rm -rf $installdir/etc/pear.conf
|
|
||||||
|
|
||||||
;;
|
|
||||||
|
|
||||||
failed-upgrade)
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "prerm called with unknown argument \`$1'" >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# dh_installdeb will replace this with shell code automatically
|
|
||||||
# generated by other debhelper scripts.
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
|
@ -1,11 +0,0 @@
|
||||||
campcaster (1.4.0+r3436-0) 64studio; urgency=low
|
|
||||||
|
|
||||||
* rebased to new upstream version
|
|
||||||
|
|
||||||
-- Robin Gareus <robin@gareus.org> Fri, 16 Apr 2010 11:59:57 +0200
|
|
||||||
|
|
||||||
campcaster (1.4.0+r3427) 64studio; urgency=low
|
|
||||||
|
|
||||||
* Initial release (Closes: #568530) (LP: #250397)
|
|
||||||
|
|
||||||
-- Robin Gareus <robin@gareus.org> Fri, 05 Feb 2010 16:35:44 +0100
|
|
|
@ -1 +0,0 @@
|
||||||
7
|
|
|
@ -1,151 +0,0 @@
|
||||||
Source: campcaster
|
|
||||||
Section: sound
|
|
||||||
Priority: extra
|
|
||||||
Maintainer: Alessio Treglia <quadrispro@ubuntu.com>
|
|
||||||
XSBC-Original-Maintainer: Robin Gareus <robin@gareus.org>
|
|
||||||
Build-Depends: debhelper (>= 7.0.50~),
|
|
||||||
autotools-dev,
|
|
||||||
libtool,
|
|
||||||
pkg-config (>= 0.15),
|
|
||||||
doxygen,
|
|
||||||
automake,
|
|
||||||
unzip, bzip2,
|
|
||||||
curl,
|
|
||||||
graphviz,
|
|
||||||
xsltproc,
|
|
||||||
libcppunit-dev,
|
|
||||||
unixodbc-dev (>= 2.2),
|
|
||||||
odbc-postgresql,
|
|
||||||
fontconfig,
|
|
||||||
libfontconfig1-dev,
|
|
||||||
libpng12-dev,
|
|
||||||
libjpeg62-dev | libjpeg8-dev,
|
|
||||||
libssl-dev,
|
|
||||||
libxml2-dev,
|
|
||||||
libpopt-dev,
|
|
||||||
libmad0-dev,
|
|
||||||
libogg-dev,
|
|
||||||
libvorbis-dev,
|
|
||||||
libbz2-dev,
|
|
||||||
libtar-dev (>= 1.2.11),
|
|
||||||
libcurl3-dev (>= 7.12.3) | libcurl4-openssl-dev (>= 7.16.4),
|
|
||||||
libboost-date-time-dev (>= 1.33.1),
|
|
||||||
libgtk2.0-dev (>= 2.6.10),
|
|
||||||
libgtkmm-2.4-dev (>= 1:2.6.5),
|
|
||||||
libglademm-2.4-dev (>= 2.6.2),
|
|
||||||
libxml++2.6-dev (>= 2.8.1),
|
|
||||||
libicu34-dev | libicu36-dev | libicu-dev,
|
|
||||||
apache2,
|
|
||||||
php5-pgsql,
|
|
||||||
libapache2-mod-php5,
|
|
||||||
php5-gd,
|
|
||||||
postgresql-8.1 | postgresql-8.2 | postgresql-8.3 | postgresql (>= 8.1),
|
|
||||||
postgresql-client-8.1 | postgresql-client-8.2 | postgresql-client-8.3 | postgresql-client (>= 8.1),
|
|
||||||
libgstreamer0.10-dev (>= 0.10.17),
|
|
||||||
php-pear,
|
|
||||||
php-db,
|
|
||||||
libserial-dev (>= 0.5.2)
|
|
||||||
Standards-Version: 3.8.4
|
|
||||||
Homepage: http://campcaster.sourcefabric.org/
|
|
||||||
|
|
||||||
|
|
||||||
Package: campcaster-libs
|
|
||||||
Architecture: any
|
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
||||||
Description: A radio program automation and support tool
|
|
||||||
Campcaster is the first free and open radio management software that
|
|
||||||
provides live studio broadcast capabilities as well as remote automation
|
|
||||||
in one integrated system.
|
|
||||||
.
|
|
||||||
Major features of Campcaster: live, in-studio playout; web-based remote
|
|
||||||
station management; automation; playlists; centralized archives of station
|
|
||||||
program material; solid, fast playback using the GStreamer multimedia
|
|
||||||
framework; search-based backup; localization into several languages;
|
|
||||||
innovative design by the Parsons School of Design; open, extensible
|
|
||||||
architecture based on XML-RPC.
|
|
||||||
.
|
|
||||||
This package contains the libraries used by Campcaster.
|
|
||||||
|
|
||||||
Package: campcaster-data
|
|
||||||
Architecture: all
|
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends},
|
|
||||||
apache2,
|
|
||||||
unzip, bzip2, gzip (>= 1.3.5),
|
|
||||||
libapache2-mod-php5,
|
|
||||||
postgresql-8.1 | postgresql-8.2 | postgresql-8.3 | postgresql (>= 8.1),
|
|
||||||
postgresql-client-8.1 | postgresql-client-8.2 | postgresql-client-8.3 | postgresql-client (>= 8.1),
|
|
||||||
unixodbc (>= 2.2),
|
|
||||||
odbc-postgresql,
|
|
||||||
xsltproc,
|
|
||||||
php5-pgsql, php5-cli, php5-gd, php-db,
|
|
||||||
gstreamer0.10-plugins-good,
|
|
||||||
gstreamer0.10-plugins-ugly | gstreamer0.10-ffmpeg | gstreamer0.10-fluendo-mp3,
|
|
||||||
gstreamer0.10-alsa,
|
|
||||||
curl, pwgen, sed (>= 4.2.1)
|
|
||||||
Description: A radio program automation and support tool - data files
|
|
||||||
Campcaster is the first free and open radio management software that
|
|
||||||
provides live studio broadcast capabilities as well as remote automation
|
|
||||||
in one integrated system.
|
|
||||||
.
|
|
||||||
Major features of Campcaster: live, in-studio playout; web-based remote
|
|
||||||
station management; automation; playlists; centralized archives of station
|
|
||||||
program material; solid, fast playback using the GStreamer multimedia
|
|
||||||
framework; search-based backup; localization into several languages;
|
|
||||||
innovative design by the Parsons School of Design; open, extensible
|
|
||||||
architecture based on XML-RPC.
|
|
||||||
.
|
|
||||||
This package contains the XMLRPC server component and shared data
|
|
||||||
files for Campcaster.
|
|
||||||
|
|
||||||
Package: campcaster-station
|
|
||||||
Architecture: any
|
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends},
|
|
||||||
campcaster-libs (= ${binary:Version}),
|
|
||||||
campcaster-data (= ${source:Version}),
|
|
||||||
apache2,
|
|
||||||
unzip, bzip2, gzip (>= 1.3.5),
|
|
||||||
libapache2-mod-php5,
|
|
||||||
postgresql-8.1 | postgresql-8.2 | postgresql-8.3 | postgresql (>= 8.1),
|
|
||||||
postgresql-client-8.1 | postgresql-client-8.2 | postgresql-client-8.3 | postgresql-client (>= 8.1),
|
|
||||||
unixodbc (>= 2.2),
|
|
||||||
odbc-postgresql,
|
|
||||||
xsltproc,
|
|
||||||
php5-pgsql, php5-cli, php5-gd, php-db,
|
|
||||||
gstreamer0.10-plugins-good,
|
|
||||||
gstreamer0.10-plugins-ugly | gstreamer0.10-ffmpeg | gstreamer0.10-fluendo-mp3,
|
|
||||||
gstreamer0.10-alsa,
|
|
||||||
curl, pwgen, sed (>= 4.2.1)
|
|
||||||
Description: A radio program automation and support tool - backend and server
|
|
||||||
Campcaster is the first free and open radio management software that
|
|
||||||
provides live studio broadcast capabilities as well as remote automation
|
|
||||||
in one integrated system.
|
|
||||||
.
|
|
||||||
Major features of Campcaster: live, in-studio playout; web-based remote
|
|
||||||
station management; automation; playlists; centralized archives of station
|
|
||||||
program material; solid, fast playback using the GStreamer multimedia
|
|
||||||
framework; search-based backup; localization into several languages;
|
|
||||||
innovative design by the Parsons School of Design; open, extensible
|
|
||||||
architecture based on XML-RPC.
|
|
||||||
.
|
|
||||||
This package contains the XMLRPC backend
|
|
||||||
and web-server component of Campcaster.
|
|
||||||
|
|
||||||
Package: campcaster-studio
|
|
||||||
Architecture: any
|
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends},
|
|
||||||
campcaster-libs (= ${binary:Version}),
|
|
||||||
campcaster-data (= ${source:Version}),
|
|
||||||
campcaster-station (= ${binary:Version})
|
|
||||||
Description: A radio program automation and support tool - client GUI
|
|
||||||
Campcaster is the first free and open radio management software that
|
|
||||||
provides live studio broadcast capabilities as well as remote automation
|
|
||||||
in one integrated system.
|
|
||||||
.
|
|
||||||
Major features of Campcaster: live, in-studio playout; web-based remote
|
|
||||||
station management; automation; playlists; centralized archives of station
|
|
||||||
program material; solid, fast playback using the GStreamer multimedia
|
|
||||||
framework; search-based backup; localization into several languages;
|
|
||||||
innovative design by the Parsons School of Design; open, extensible
|
|
||||||
architecture based on XML-RPC.
|
|
||||||
.
|
|
||||||
This package contains the GUI client component of Campcaster.
|
|
|
@ -1,142 +0,0 @@
|
||||||
Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=142
|
|
||||||
Name: Campcaster
|
|
||||||
Maintainer:
|
|
||||||
Micz Flor <micz.flor@web.de>
|
|
||||||
Robert Klajn <robert.klajn@gmail.com>
|
|
||||||
Michael Aschauer <mash@re-p.org>
|
|
||||||
Douglas Arellanes <douglas.arellanes@mdlf.org>
|
|
||||||
Akos Maroy <darkeye@tyrell.hu>
|
|
||||||
Sava Tatić <sava.tatic@mdlf.org>
|
|
||||||
Charles Truett
|
|
||||||
Ferenc Gerlits <fgerlits@campware.org>
|
|
||||||
Mark Kretschmann
|
|
||||||
Source: http://sourceforge.net/projects/campcaster/files/
|
|
||||||
|
|
||||||
Files: *
|
|
||||||
Copyright: 2004-2010, Sourcefabric O.P.S. http://www.sourcefabric.org/
|
|
||||||
License: GPL-2+
|
|
||||||
|
|
||||||
Files: debian/*
|
|
||||||
Copyright:
|
|
||||||
2010, Robin Gareus <robin@gareus.org> on Sun, 31 Jan 2010 22:53:14 +0100
|
|
||||||
2010, Alessio Treglia <quadrispro@ubuntu.com> on Tue, 16 Feb 2010 22:25:39 +0100
|
|
||||||
License: GPL-2+
|
|
||||||
|
|
||||||
Files: src/tools/libodbc++/
|
|
||||||
Copyright: 1999-2000, Manush Dodunekov <manush@stendahls.net>
|
|
||||||
License: LGPL-2+
|
|
||||||
|
|
||||||
Files: src/tools/taglib/
|
|
||||||
Copyright: 2002-2008, Scott Wheeler <wheeler@kde.org> et al.
|
|
||||||
License: LGPL-2+
|
|
||||||
|
|
||||||
Files: src/tools/xmlrpc++/
|
|
||||||
Copyright: 2002-2004, Chris Morley
|
|
||||||
License: LGPL-2+
|
|
||||||
|
|
||||||
Files: src/tools/pear/
|
|
||||||
Copyright:
|
|
||||||
2002-2005, Richard Heyes <richard@php.net>
|
|
||||||
2002-2005, Tal Peer <tal@php.net>
|
|
||||||
2002-2005, Michael Wallner <mike@php.net>
|
|
||||||
License: other
|
|
||||||
The PHP License, version 3.0
|
|
||||||
Copyright (c) 1999 - 2006 The PHP Group. All rights reserved.
|
|
||||||
--------------------------------------------------------------------
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, is permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
|
|
||||||
1. Redistributions of source code must retain the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
notice, this list of conditions and the following disclaimer in
|
|
||||||
the documentation and/or other materials provided with the
|
|
||||||
distribution.
|
|
||||||
|
|
||||||
3. The name "PHP" must not be used to endorse or promote products
|
|
||||||
derived from this software without prior written permission. For
|
|
||||||
written permission, please contact group@php.net.
|
|
||||||
|
|
||||||
4. Products derived from this software may not be called "PHP", nor
|
|
||||||
may "PHP" appear in their name, without prior written permission
|
|
||||||
from group@php.net. You may indicate that your software works in
|
|
||||||
conjunction with PHP by saying "Foo for PHP" instead of calling
|
|
||||||
it "PHP Foo" or "phpfoo"
|
|
||||||
|
|
||||||
5. The PHP Group may publish revised and/or new versions of the
|
|
||||||
license from time to time. Each version will be given a
|
|
||||||
distinguishing version number.
|
|
||||||
Once covered code has been published under a particular version
|
|
||||||
of the license, you may always continue to use it under the terms
|
|
||||||
of that version. You may also choose to use such covered code
|
|
||||||
under the terms of any subsequent version of the license
|
|
||||||
published by the PHP Group. No one other than the PHP Group has
|
|
||||||
the right to modify the terms applicable to covered code created
|
|
||||||
under this License.
|
|
||||||
|
|
||||||
6. Redistributions of any form whatsoever must retain the following
|
|
||||||
acknowledgment:
|
|
||||||
"This product includes PHP, freely available from
|
|
||||||
<http://www.php.net/>".
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND
|
|
||||||
ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP
|
|
||||||
DEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
||||||
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
||||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
||||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
||||||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
||||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
||||||
OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
--------------------------------------------------------------------
|
|
||||||
|
|
||||||
This software consists of voluntary contributions made by many
|
|
||||||
individuals on behalf of the PHP Group.
|
|
||||||
|
|
||||||
The PHP Group can be contacted via Email at group@php.net.
|
|
||||||
|
|
||||||
For more information on the PHP Group and the PHP project,
|
|
||||||
please see <http://www.php.net>.
|
|
||||||
|
|
||||||
This product includes the Zend Engine, freely available at
|
|
||||||
<http://www.zend.com>.
|
|
||||||
|
|
||||||
License: GPL-2+
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
.
|
|
||||||
This package is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
.
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
X-Comment: On Debian systems, the complete text of the GNU General Public
|
|
||||||
License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
|
|
||||||
|
|
||||||
License: LGPL-2
|
|
||||||
This library is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the GNU Library General Public
|
|
||||||
License as published by the Free Software Foundation; either
|
|
||||||
version 2 of the License, or (at your option) any later version.
|
|
||||||
.
|
|
||||||
This library is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
Library General Public License for more details.
|
|
||||||
.
|
|
||||||
You should have received a copy of the GNU Library General Public
|
|
||||||
License along with this library; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
|
|
||||||
X-Comment: On Debian systems, the complete text of the GNU Lesser Public
|
|
||||||
License version 2 can be found in `/usr/share/common-licenses/LGPL-2'.
|
|
|
@ -1,17 +0,0 @@
|
||||||
Subject: do not add symlink in /var/www/ - use apache Alias instead
|
|
||||||
Forwarded: no
|
|
||||||
Author: Robin Gareus <robin@gareus.org>
|
|
||||||
Last-Update: 2010-02-14
|
|
||||||
Index: campcaster/etc/apache/90_php_campcaster.conf
|
|
||||||
===================================================================
|
|
||||||
--- campcaster.orig/etc/apache/90_php_campcaster.conf 2010-07-22 15:21:30.000000000 +0200
|
|
||||||
+++ campcaster/etc/apache/90_php_campcaster.conf 2010-08-26 14:51:45.000000000 +0200
|
|
||||||
@@ -1,2 +1,8 @@
|
|
||||||
php_value upload_max_filesize 32M
|
|
||||||
php_value post_max_size 36M
|
|
||||||
+
|
|
||||||
+Alias /campcaster /usr/share/campcaster/www
|
|
||||||
+
|
|
||||||
+<Directory /usr/share/campcaster/www>
|
|
||||||
+ Options FollowSymlinks
|
|
||||||
+</Directory>
|
|
|
@ -1,147 +0,0 @@
|
||||||
Description: Change (hardcoded) paths in shell and install scripts
|
|
||||||
to conform to debian locations.
|
|
||||||
Forwarded: not-needed
|
|
||||||
Author: Robin Gareus <robin@gareus.org>
|
|
||||||
Last-Update: 2010-02-14
|
|
||||||
Index: campcaster/src/modules/archiveServer/var/conf.php.template
|
|
||||||
===================================================================
|
|
||||||
--- campcaster.orig/src/modules/archiveServer/var/conf.php.template 2010-07-22 15:21:30.000000000 +0200
|
|
||||||
+++ campcaster/src/modules/archiveServer/var/conf.php.template 2010-08-26 14:51:22.000000000 +0200
|
|
||||||
@@ -3,7 +3,7 @@
|
|
||||||
* ArchiveServer configuration file
|
|
||||||
*/
|
|
||||||
|
|
||||||
-include(dirname(__FILE__)."/../../storageServer/var/campcaster_version.php");
|
|
||||||
+include("/etc/campcaster/storageServer/campcaster_version.php");
|
|
||||||
|
|
||||||
/**
|
|
||||||
* configuration structure:
|
|
||||||
@@ -48,10 +48,10 @@
|
|
||||||
'AdminsGr' => 'Admins',
|
|
||||||
'StationPrefsGr'=> '',
|
|
||||||
'AllGr' => 'All',
|
|
||||||
- 'storageDir' => dirname(__FILE__).'/../../archiveServer/var/stor',
|
|
||||||
- 'bufferDir' => dirname(__FILE__).'/../../archiveServer/var/stor/buffer',
|
|
||||||
- 'transDir' => dirname(__FILE__).'/../../archiveServer/var/trans',
|
|
||||||
- 'accessDir' => dirname(__FILE__).'/../../archiveServer/var/access',
|
|
||||||
+ 'storageDir' => 'ls_shr_www/archiveServer/var/stor',
|
|
||||||
+ 'bufferDir' => 'ls_shr_www/archiveServer/var/stor/buffer',
|
|
||||||
+ 'transDir' => 'ls_shr_www/archiveServer/var/trans',
|
|
||||||
+ 'accessDir' => 'ls_shr_www/archiveServer/var/access',
|
|
||||||
'pearPath' => 'ls_lib_dir/pear',
|
|
||||||
'isArchive' => TRUE,
|
|
||||||
'validate' => TRUE,
|
|
||||||
@@ -117,4 +117,4 @@
|
|
||||||
);
|
|
||||||
$old_ip = get_include_path();
|
|
||||||
set_include_path('.'.PATH_SEPARATOR.$CC_CONFIG['pearPath'].PATH_SEPARATOR.$old_ip);
|
|
||||||
-?>
|
|
||||||
\ No newline at end of file
|
|
||||||
+?>
|
|
||||||
Index: campcaster/src/modules/htmlUI/var/ui_conf.php.template
|
|
||||||
===================================================================
|
|
||||||
--- campcaster.orig/src/modules/htmlUI/var/ui_conf.php.template 2010-07-22 15:21:30.000000000 +0200
|
|
||||||
+++ campcaster/src/modules/htmlUI/var/ui_conf.php.template 2010-08-26 14:51:22.000000000 +0200
|
|
||||||
@@ -152,9 +152,9 @@
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
-require_once(dirname(__FILE__).'/ui_base.inc.php');
|
|
||||||
-require_once('../../../storageServer/var/GreenBox.php');
|
|
||||||
-require_once(dirname(__FILE__).'/formmask/generic.inc.php');
|
|
||||||
+require_once('htmlui_dir/ui_base.inc.php');
|
|
||||||
+require_once('storage_server/var/GreenBox.php');
|
|
||||||
+require_once('htmlui_dir/formmask/generic.inc.php');
|
|
||||||
|
|
||||||
require_once('DB.php');
|
|
||||||
require_once('HTML/QuickForm.php');
|
|
||||||
Index: campcaster/src/modules/storageAdmin/bin/campcaster-backup
|
|
||||||
===================================================================
|
|
||||||
--- campcaster.orig/src/modules/storageAdmin/bin/campcaster-backup 2010-08-26 13:40:02.000000000 +0200
|
|
||||||
+++ campcaster/src/modules/storageAdmin/bin/campcaster-backup 2010-08-26 14:51:22.000000000 +0200
|
|
||||||
@@ -36,8 +36,7 @@
|
|
||||||
then
|
|
||||||
phpdir=`cd $reldir/var; pwd`
|
|
||||||
fi
|
|
||||||
-mkdir -p $reldir/tmp
|
|
||||||
-tmpmaindir=`cd $reldir/tmp; pwd`
|
|
||||||
+tmpmaindir=/tmp
|
|
||||||
dbxml="db.xml"
|
|
||||||
datestr=`date '+%Y%m%d%H%M%S'`
|
|
||||||
xmltar="xmls.tar"
|
|
||||||
Index: campcaster/src/modules/storageAdmin/bin/dumpDbSchema.sh
|
|
||||||
===================================================================
|
|
||||||
--- campcaster.orig/src/modules/storageAdmin/bin/dumpDbSchema.sh 2010-08-26 13:40:02.000000000 +0200
|
|
||||||
+++ campcaster/src/modules/storageAdmin/bin/dumpDbSchema.sh 2010-08-26 14:51:22.000000000 +0200
|
|
||||||
@@ -30,13 +30,7 @@
|
|
||||||
# Determine directories, files
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
-reldir=`dirname $0`/..
|
|
||||||
-phpdir=ls_storageAdmin_phppart_dir
|
|
||||||
-if [ "$phpdir" == "ls_storageAdmin_phppart_dir" ]
|
|
||||||
-then
|
|
||||||
- phpdir=`cd $reldir/var; pwd`
|
|
||||||
-fi
|
|
||||||
-filelistpathname=.
|
|
||||||
+phpdir=/usr/share/campcaster/www/storageAdmin/var/
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Print the usage information for this script.
|
|
||||||
Index: campcaster/src/modules/storageServer/var/conf.php.template
|
|
||||||
===================================================================
|
|
||||||
--- campcaster.orig/src/modules/storageServer/var/conf.php.template 2010-07-22 15:21:30.000000000 +0200
|
|
||||||
+++ campcaster/src/modules/storageServer/var/conf.php.template 2010-08-26 14:51:22.000000000 +0200
|
|
||||||
@@ -53,12 +53,12 @@
|
|
||||||
'StationPrefsGr'=> 'StationPrefs',
|
|
||||||
'AllGr' => 'All',
|
|
||||||
'TrashName' => 'trash_',
|
|
||||||
- 'storageDir' => dirname(__FILE__).'/../../storageServer/var/stor',
|
|
||||||
- 'bufferDir' => dirname(__FILE__).'/../../storageServer/var/stor/buffer',
|
|
||||||
- 'transDir' => dirname(__FILE__).'/../../storageServer/var/trans',
|
|
||||||
- 'accessDir' => dirname(__FILE__).'/../../storageServer/var/access',
|
|
||||||
+ 'storageDir' => 'ls_shr_www/storageServer/var/stor',
|
|
||||||
+ 'bufferDir' => 'ls_shr_www/storageServer/var/stor/buffer',
|
|
||||||
+ 'transDir' => 'ls_shr_www/storageServer/var/trans',
|
|
||||||
+ 'accessDir' => 'ls_shr_www/storageServer/var/access',
|
|
||||||
'pearPath' => 'ls_lib_dir/pear',
|
|
||||||
- 'cronDir' => dirname(__FILE__).'/../../storageServer/var/cron',
|
|
||||||
+ 'cronDir' => 'ls_shr_www/storageServer/var/cron',
|
|
||||||
'isArchive' => FALSE,
|
|
||||||
'validate' => TRUE,
|
|
||||||
'useTrash' => TRUE,
|
|
||||||
@@ -113,9 +113,10 @@
|
|
||||||
|
|
||||||
/* =================================================== cron configuration */
|
|
||||||
'cronUserName' => 'ls_apache_group',
|
|
||||||
- 'lockfile' => dirname(__FILE__).'/cron/cron.lock',
|
|
||||||
- 'cronfile' => dirname(__FILE__).'/cron/croncall.php',
|
|
||||||
- 'paramdir' => dirname(__FILE__).'/cron/params',
|
|
||||||
+ 'lockfile' => '/var/lock/campcaster-cron.lock',
|
|
||||||
+ 'cronfile' => 'ls_shr_www/storageServer/var/cron/croncall.php',
|
|
||||||
+ 'paramdir' => '/var/cache/campcaster/cronparams',
|
|
||||||
+
|
|
||||||
);
|
|
||||||
|
|
||||||
// Add database table names
|
|
||||||
Index: campcaster/src/products/scheduler/bin/createOdbcDataSource.sh
|
|
||||||
===================================================================
|
|
||||||
--- campcaster.orig/src/products/scheduler/bin/createOdbcDataSource.sh 2010-08-26 13:40:02.000000000 +0200
|
|
||||||
+++ campcaster/src/products/scheduler/bin/createOdbcDataSource.sh 2010-08-26 14:51:22.000000000 +0200
|
|
||||||
@@ -32,14 +32,7 @@
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Determine directories, files
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
-reldir=`dirname $0`/..
|
|
||||||
-basedir=`cd $reldir; pwd;`
|
|
||||||
-bindir=$basedir/bin
|
|
||||||
-etcdir=$basedir/etc
|
|
||||||
-docdir=$basedir/doc
|
|
||||||
-tmpdir=$basedir/tmp
|
|
||||||
-usrdir=$basedir/usr
|
|
||||||
-
|
|
||||||
+etcdir=/usr/share/campcaster/etc/
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Print the usage information for this script.
|
|
||||||
|
|
|
@ -1,194 +0,0 @@
|
||||||
Subject: Add icon in xpm format
|
|
||||||
Author: Robin Gareus <robin@gareus.org>
|
|
||||||
Last-Update: 2010-02-14
|
|
||||||
diff --git a/src/products/gLiveSupport/var/icon32.xpm b/src/products/gLiveSupport/var/icon32.xpm
|
|
||||||
new file mode 100644
|
|
||||||
index 0000000..90f2a46
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/src/products/gLiveSupport/var/icon32.xpm
|
|
||||||
@@ -0,0 +1,185 @@
|
|
||||||
+/* XPM */
|
|
||||||
+static char *icon__[] = {
|
|
||||||
+/* columns rows colors chars-per-pixel */
|
|
||||||
+"32 32 147 2",
|
|
||||||
+" c #B6480F",
|
|
||||||
+". c #BB4D16",
|
|
||||||
+"X c #BE4D14",
|
|
||||||
+"o c #BE4E16",
|
|
||||||
+"O c #C2521C",
|
|
||||||
+"+ c #D9521C",
|
|
||||||
+"@ c #C45925",
|
|
||||||
+"# c #C95923",
|
|
||||||
+"$ c #CD5D27",
|
|
||||||
+"% c #CD5E2C",
|
|
||||||
+"& c #D75A25",
|
|
||||||
+"* c #DF5E2A",
|
|
||||||
+"= c #D46632",
|
|
||||||
+"- c #DF6732",
|
|
||||||
+"; c #D86C3D",
|
|
||||||
+": c #DB6D3C",
|
|
||||||
+"> c #DF6E3E",
|
|
||||||
+", c #E6642E",
|
|
||||||
+"< c #E26330",
|
|
||||||
+"1 c #E06735",
|
|
||||||
+"2 c #E26837",
|
|
||||||
+"3 c #E56938",
|
|
||||||
+"4 c #E26D39",
|
|
||||||
+"5 c #E56C3B",
|
|
||||||
+"6 c #E56D3D",
|
|
||||||
+"7 c #E96A38",
|
|
||||||
+"8 c #DC7040",
|
|
||||||
+"9 c #DD7242",
|
|
||||||
+"0 c #DE7245",
|
|
||||||
+"q c #E27343",
|
|
||||||
+"w c #E47242",
|
|
||||||
+"e c #E37546",
|
|
||||||
+"r c #E37547",
|
|
||||||
+"t c #EB7241",
|
|
||||||
+"y c #E97343",
|
|
||||||
+"u c #EA7647",
|
|
||||||
+"i c #E37548",
|
|
||||||
+"p c #E77749",
|
|
||||||
+"a c #EA7749",
|
|
||||||
+"s c #E27E4E",
|
|
||||||
+"d c #E9794C",
|
|
||||||
+"f c #E97A4E",
|
|
||||||
+"g c #E57B50",
|
|
||||||
+"h c #E37D50",
|
|
||||||
+"j c #E27C52",
|
|
||||||
+"k c #EE7D50",
|
|
||||||
+"l c #E87E54",
|
|
||||||
+"z c #E68055",
|
|
||||||
+"x c #EB8050",
|
|
||||||
+"c c #EA8052",
|
|
||||||
+"v c #E98056",
|
|
||||||
+"b c #ED8157",
|
|
||||||
+"n c #EE8157",
|
|
||||||
+"m c #E5845C",
|
|
||||||
+"M c #E7875F",
|
|
||||||
+"N c #E98158",
|
|
||||||
+"B c #E88359",
|
|
||||||
+"V c #E98459",
|
|
||||||
+"C c #EE865B",
|
|
||||||
+"Z c #E8855D",
|
|
||||||
+"A c #E9865E",
|
|
||||||
+"S c #EE875F",
|
|
||||||
+"D c #F1855A",
|
|
||||||
+"F c #EA8860",
|
|
||||||
+"G c #EC8A60",
|
|
||||||
+"H c #EE8A62",
|
|
||||||
+"J c #EB8C64",
|
|
||||||
+"K c #E98C66",
|
|
||||||
+"L c #EE8C66",
|
|
||||||
+"P c #EF8D66",
|
|
||||||
+"I c #EB926C",
|
|
||||||
+"U c #EB926D",
|
|
||||||
+"Y c #EF946F",
|
|
||||||
+"T c #F1916B",
|
|
||||||
+"R c #F1936E",
|
|
||||||
+"E c #EF9470",
|
|
||||||
+"W c #ED9775",
|
|
||||||
+"Q c #EF9976",
|
|
||||||
+"! c #EE9978",
|
|
||||||
+"~ c #EE9D7A",
|
|
||||||
+"^ c #F19571",
|
|
||||||
+"/ c #F59872",
|
|
||||||
+"( c #F39974",
|
|
||||||
+") c #F09A77",
|
|
||||||
+"_ c #F79B78",
|
|
||||||
+"` c #F19D78",
|
|
||||||
+"' c #F39C79",
|
|
||||||
+"] c #F49E7B",
|
|
||||||
+"[ c #F79E7B",
|
|
||||||
+"{ c #F39C7C",
|
|
||||||
+"} c #F29D7C",
|
|
||||||
+"| c #EFA07E",
|
|
||||||
+" . c #F7A17F",
|
|
||||||
+".. c #F5A282",
|
|
||||||
+"X. c #F7A282",
|
|
||||||
+"o. c #F7A382",
|
|
||||||
+"O. c #F7A785",
|
|
||||||
+"+. c #F8A585",
|
|
||||||
+"@. c #F8A687",
|
|
||||||
+"#. c #F4A98A",
|
|
||||||
+"$. c #F7A98B",
|
|
||||||
+"%. c #F7AB8D",
|
|
||||||
+"&. c #F5AC8D",
|
|
||||||
+"*. c #F9AA8A",
|
|
||||||
+"=. c #FAAC8D",
|
|
||||||
+"-. c #F7AF92",
|
|
||||||
+";. c #F9AE91",
|
|
||||||
+":. c #F7B091",
|
|
||||||
+">. c #F8B196",
|
|
||||||
+",. c #FAB59B",
|
|
||||||
+"<. c #FCB699",
|
|
||||||
+"1. c #FAB79C",
|
|
||||||
+"2. c #FABB9F",
|
|
||||||
+"3. c #FBBCA1",
|
|
||||||
+"4. c #FCBEA6",
|
|
||||||
+"5. c #FBC0A6",
|
|
||||||
+"6. c #FDC1AA",
|
|
||||||
+"7. c #FCC2AC",
|
|
||||||
+"8. c #FDC4AE",
|
|
||||||
+"9. c #FEC5AF",
|
|
||||||
+"0. c #FDC5B0",
|
|
||||||
+"q. c #FFC6B0",
|
|
||||||
+"w. c #FFC6B1",
|
|
||||||
+"e. c #FEC7B2",
|
|
||||||
+"r. c #FFCBB4",
|
|
||||||
+"t. c #FECBB6",
|
|
||||||
+"y. c #FECCB6",
|
|
||||||
+"u. c #FFCDB7",
|
|
||||||
+"i. c #FFCBB9",
|
|
||||||
+"p. c #FFCCB8",
|
|
||||||
+"a. c #FECCB9",
|
|
||||||
+"s. c #FFCEBA",
|
|
||||||
+"d. c #FFD1BF",
|
|
||||||
+"f. c #FFD2BF",
|
|
||||||
+"g. c #FFD2C1",
|
|
||||||
+"h. c #FFD3C1",
|
|
||||||
+"j. c #FFD2C2",
|
|
||||||
+"k. c #FFD4C4",
|
|
||||||
+"l. c #FFD5C4",
|
|
||||||
+"z. c #FFD5C5",
|
|
||||||
+"x. c #FFD6C7",
|
|
||||||
+"c. c #FFD7C7",
|
|
||||||
+"v. c #FFD8C7",
|
|
||||||
+"b. c #FFD7C9",
|
|
||||||
+"n. c #FFD9C9",
|
|
||||||
+"m. c #FFD9CA",
|
|
||||||
+"M. c None",
|
|
||||||
+/* pixels */
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.k / +.+.] D , M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.< ' 8.c.n.b.c.n.v.a.=.u M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.] c.c.7.#.^ F B A Y %.e.d.<.y M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.f t.a.( : o M.M.M.M.M.M.M.. : .6.[ M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.( 8.K o M.M.M.M.M.M.M.M.M.M.M.M.M.@ U *.7 M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M. .Q O M.M.M.M.M.& f S H C a M.M.M.M.M.M.M.T y M.M.M.M.",
|
|
||||||
+"M.M.M.M.R 0 M.M.M.M.M.p ;.i.j.c.j.j.j.e.o.3 M.M.M.M.M.l 6 M.M.M.",
|
|
||||||
+"M.M.M.b M.M.M.M.M.5 >.d.4.{ v e e e f Y 1.e.o.* M.M.M.M.M.+ M.M.",
|
|
||||||
+"M.M.2 M.M.M.M.M.L e.#.> M.M.M.M.M.M.M.M.% ) ,.n M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M...:.: M.M.M.M.M.M.M.M.M.M.M.M.M.M.Q L M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.{ h M.M.M.M.M.M.1 x c 4 M.M.M.M.M.M.M.M.B M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.A M.M.M.M.M.M.V 3.a.a.r.y.5.' M.M.M.M.M.M.M.1 M.M.M.M.",
|
|
||||||
+"M.M.M.M.i M.M.M.M.M.M.%.2.I 9 $ # = s ~ :.H M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.w O.h M.M.M.M.M.M.M.M.M.M K M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.z M.M.M.M.M.M.M.M.M.M.M.M.M.m M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.",
|
|
||||||
+"M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M.M."
|
|
||||||
+};
|
|
|
@ -1,47 +0,0 @@
|
||||||
Subject: Change pgsql setup scripts for debian postgres 8.4
|
|
||||||
Author: Robin Gareus <robin@gareus.org>
|
|
||||||
Last-Update: 2010-02-14
|
|
||||||
Index: campcaster/bin/postInstallStation.sh
|
|
||||||
===================================================================
|
|
||||||
--- campcaster.orig/bin/postInstallStation.sh 2010-08-26 14:51:38.000000000 +0200
|
|
||||||
+++ campcaster/bin/postInstallStation.sh 2010-08-26 14:51:40.000000000 +0200
|
|
||||||
@@ -235,22 +235,22 @@
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
# Install the new pg_hba.conf file
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
-echo "Modifying postgresql access permissions...";
|
|
||||||
-
|
|
||||||
-pg_config_dir=$postgresql_dir
|
|
||||||
-pg_config_file=pg_hba.conf
|
|
||||||
-pg_config_file_saved=pg_hba.conf.before-campcaster
|
|
||||||
-
|
|
||||||
-if [ -f $pg_config_dir/$pg_config_file ] ; then
|
|
||||||
- mv -f $pg_config_dir/$pg_config_file $pg_config_dir/$pg_config_file_saved ;
|
|
||||||
-fi
|
|
||||||
-cp $install_etc/$pg_config_file $pg_config_dir/$pg_config_file
|
|
||||||
-chown root:$postgres_user $pg_config_dir/$pg_config_file
|
|
||||||
-
|
|
||||||
-# don't use restart for the init script, as it might return prematurely
|
|
||||||
-# and in the later call to psql we wouldn't be able to connect
|
|
||||||
-${postgresql_init_script} stop
|
|
||||||
-${postgresql_init_script} start
|
|
||||||
+#echo "Modifying postgresql access permissions...";
|
|
||||||
+#
|
|
||||||
+#pg_config_dir=$postgresql_dir
|
|
||||||
+#pg_config_file=pg_hba.conf
|
|
||||||
+#pg_config_file_saved=pg_hba.conf.before-campcaster
|
|
||||||
+#
|
|
||||||
+#if [ -f $pg_config_dir/$pg_config_file ] ; then
|
|
||||||
+# mv -f $pg_config_dir/$pg_config_file $pg_config_dir/$pg_config_file_saved ;
|
|
||||||
+#fi
|
|
||||||
+#cp $install_etc/$pg_config_file $pg_config_dir/$pg_config_file
|
|
||||||
+#chown root:$postgres_user $pg_config_dir/$pg_config_file
|
|
||||||
+#
|
|
||||||
+## don't use restart for the init script, as it might return prematurely
|
|
||||||
+## and in the later call to psql we wouldn't be able to connect
|
|
||||||
+#${postgresql_init_script} stop
|
|
||||||
+#${postgresql_init_script} start
|
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,6 +0,0 @@
|
||||||
remove_upstream_deb.diff
|
|
||||||
icon_xpm.diff
|
|
||||||
debianize_paths.diff
|
|
||||||
postgres_fixes.diff
|
|
||||||
apache_setup.diff
|
|
||||||
|
|
|
@ -1,161 +0,0 @@
|
||||||
#!/usr/bin/make -f
|
|
||||||
# -*- makefile -*-
|
|
||||||
|
|
||||||
# Uncomment this to turn on verbose mode.
|
|
||||||
export DH_VERBOSE=1
|
|
||||||
|
|
||||||
%:
|
|
||||||
dh $@
|
|
||||||
|
|
||||||
override_dh_auto_configure:
|
|
||||||
CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" \
|
|
||||||
./configure --prefix=$(CURDIR)/debian/tmp \
|
|
||||||
--mandir=\$${prefix}/share/man \
|
|
||||||
--infodir=\$${prefix}/share/info \
|
|
||||||
--sysconfdir=$(CURDIR)/debian/tmp/etc\
|
|
||||||
--with-www-docroot=$(CURDIR)/debian/tmp/var/www \
|
|
||||||
--with-apache-group=www-data \
|
|
||||||
--with-station-audio-out=hw:0,0 \
|
|
||||||
--with-studio-audio-out=hw:1,0 \
|
|
||||||
--with-studio-audio-cue=hw:2,0 \
|
|
||||||
--with-storage-server=/usr/share/campcaster\
|
|
||||||
--with-hostname=localhost
|
|
||||||
|
|
||||||
override_dh_prep:
|
|
||||||
#dh_prep
|
|
||||||
rm -f debian/campcaster.substvars
|
|
||||||
rm -f debian/campcaster.*.debhelper
|
|
||||||
rm -rf debian/campcaster-libs/
|
|
||||||
rm -rf debian/campcaster-studio/
|
|
||||||
rm -rf debian/campcaster-station/
|
|
||||||
#
|
|
||||||
# CUSTOMIZED LIBS..
|
|
||||||
mkdir -p debian/campcaster-libs/usr/lib/campcaster
|
|
||||||
mv debian/tmp/lib/libodbc++-mt.so* debian/campcaster-libs/usr/lib/campcaster/
|
|
||||||
mv debian/tmp/lib/libtag.so* debian/campcaster-libs/usr/lib/campcaster/
|
|
||||||
mv debian/tmp/lib/libxmlrpc++.so* debian/campcaster-libs/usr/lib/campcaster/
|
|
||||||
mv debian/tmp/lib/pear debian/campcaster-libs/usr/lib/campcaster/pear
|
|
||||||
#
|
|
||||||
rm -rf debian/tmp
|
|
||||||
#
|
|
||||||
# campcaster installs a symlink here and will fail if the dir does not exist
|
|
||||||
mkdir -p debian/tmp/var/www
|
|
||||||
|
|
||||||
|
|
||||||
override_dh_install:
|
|
||||||
dh_install
|
|
||||||
#
|
|
||||||
mkdir -p debian/campcaster-studio/usr/share/pixmaps/
|
|
||||||
cp src/products/gLiveSupport/var/icon32.xpm debian/campcaster-studio/usr/share/pixmaps/campcaster.xpm
|
|
||||||
#
|
|
||||||
mkdir -p debian/campcaster-studio/usr/lib/campcaster/bin
|
|
||||||
#
|
|
||||||
# station (server)
|
|
||||||
mkdir -p debian/campcaster-station/usr/lib/campcaster/bin
|
|
||||||
mkdir -p debian/campcaster-station/usr/share/campcaster/etc
|
|
||||||
mkdir -p debian/campcaster-station/usr/share/campcaster/www
|
|
||||||
mkdir -p debian/campcaster-station/etc/
|
|
||||||
mv -f debian/tmp/bin/campcaster-scheduler \
|
|
||||||
debian/tmp/bin/campcaster-scheduler.sh \
|
|
||||||
debian/tmp/bin/postInstallStation.sh \
|
|
||||||
debian/tmp/bin/createDatabase.sh \
|
|
||||||
debian/tmp/bin/createOdbcDataSource.sh \
|
|
||||||
debian/tmp/bin/campcaster-backup \
|
|
||||||
debian/tmp/bin/campcaster-import \
|
|
||||||
debian/tmp/bin/dumpDbSchema.sh \
|
|
||||||
debian/tmp/bin/campcaster-restore \
|
|
||||||
debian/campcaster-station/usr/lib/campcaster/bin/
|
|
||||||
mv -f debian/tmp/etc/campcaster-scheduler.xml \
|
|
||||||
debian/campcaster-station/etc/
|
|
||||||
# CONFIG templates (for postinst and cc-scripts)
|
|
||||||
mv -f debian/tmp/etc/pg_hba.conf \
|
|
||||||
debian/tmp/etc/odbc_template \
|
|
||||||
debian/tmp/etc/odbcinst_template \
|
|
||||||
debian/tmp/etc/odbcinst_old_debian_template \
|
|
||||||
debian/tmp/etc/odbcinst_new_debian_template \
|
|
||||||
debian/tmp/etc/apache/90_php_campcaster.conf \
|
|
||||||
debian/campcaster-station/usr/share/campcaster/etc/
|
|
||||||
# CONFIG files
|
|
||||||
mkdir -p debian/campcaster-station/etc/campcaster/storageServer
|
|
||||||
mkdir -p debian/campcaster-station/etc/campcaster/storageAdmin
|
|
||||||
mkdir -p debian/campcaster-station/etc/campcaster/htmlUI
|
|
||||||
#
|
|
||||||
mv -f debian/tmp/var/Campcaster/storageServer/var/conf.php \
|
|
||||||
debian/campcaster-station/etc/campcaster/storageServer/conf.php
|
|
||||||
mv -f debian/tmp/var/Campcaster/storageServer/var/campcaster_version.php \
|
|
||||||
debian/campcaster-station/etc/campcaster/storageServer/
|
|
||||||
mv -f debian/tmp/var/Campcaster/storageAdmin/var/conf.php \
|
|
||||||
debian/campcaster-station/etc/campcaster/storageAdmin/conf.php
|
|
||||||
mv -f debian/tmp/var/Campcaster/htmlUI/var/ui_conf.php \
|
|
||||||
debian/campcaster-station/etc/campcaster/htmlUI/ui_conf.php
|
|
||||||
#
|
|
||||||
mv -f debian/tmp/var/Campcaster/alib \
|
|
||||||
debian/tmp/var/Campcaster/getid3 \
|
|
||||||
debian/tmp/var/Campcaster/htmlUI \
|
|
||||||
debian/tmp/var/Campcaster/index.php \
|
|
||||||
debian/tmp/var/Campcaster/scheduler \
|
|
||||||
debian/tmp/var/Campcaster/storageServer \
|
|
||||||
debian/tmp/var/Campcaster/storageAdmin \
|
|
||||||
debian/campcaster-station/usr/share/campcaster/www
|
|
||||||
# symlink CONFIG files
|
|
||||||
ln -s /etc/campcaster/storageServer/conf.php debian/campcaster-station/usr/share/campcaster/www/storageServer/var/conf.php
|
|
||||||
ln -s /etc/campcaster/storageServer/campcaster_version.php debian/campcaster-station/usr/share/campcaster/www/storageServer/var/
|
|
||||||
ln -s /etc/campcaster/storageAdmin/conf.php debian/campcaster-station/usr/share/campcaster/www/storageAdmin/var/conf.php
|
|
||||||
ln -s /etc/campcaster/htmlUI/ui_conf.php debian/campcaster-station/usr/share/campcaster/www/htmlUI/var/ui_conf.php
|
|
||||||
#
|
|
||||||
mkdir -p debian/campcaster-station/usr/bin/
|
|
||||||
ln -s /usr/lib/campcaster/bin/campcaster-scheduler.sh debian/campcaster-station/usr/bin/campcaster-scheduler
|
|
||||||
ln -s /usr/lib/campcaster/bin/campcaster-import debian/campcaster-station/usr/bin/campcaster-import
|
|
||||||
#ln -s /usr/lib/campcaster/bin/campcaster-backup debian/campcaster-station/usr/bin/campcaster-backup
|
|
||||||
#ln -s /usr/lib/campcaster/bin/campcaster-restore debian/campcaster-station/usr/sbin/campcaster-restore
|
|
||||||
#
|
|
||||||
# studio (client)
|
|
||||||
mkdir -p debian/campcaster-studio/usr/lib/campcaster/bin
|
|
||||||
mkdir -p debian/campcaster-studio/usr/share/campcaster/etc
|
|
||||||
mkdir -p debian/campcaster-studio/etc/
|
|
||||||
mkdir -p debian/campcaster-studio/usr/share/campcaster/www
|
|
||||||
|
|
||||||
mv debian/tmp/lib/liblivesupport* debian/campcaster-studio/usr/lib/
|
|
||||||
mv -f debian/tmp/bin/campcaster-studio \
|
|
||||||
debian/tmp/bin/campcaster-studio.sh \
|
|
||||||
debian/campcaster-studio/usr/lib/campcaster/bin/
|
|
||||||
mv -f debian/tmp/etc/campcaster-studio.xml debian/campcaster-studio/etc/
|
|
||||||
mv -f debian/tmp/etc/campcaster-studio.xml.template debian/campcaster-studio/usr/share/campcaster/etc/
|
|
||||||
mv -f debian/tmp/var/Campcaster/Widgets \
|
|
||||||
debian/tmp/var/Campcaster/studio-localization \
|
|
||||||
debian/tmp/var/Campcaster/glade \
|
|
||||||
debian/tmp/var/Campcaster/campcaster.png \
|
|
||||||
debian/tmp/var/Campcaster/icon*.png \
|
|
||||||
debian/tmp/var/Campcaster/stationLogo.png \
|
|
||||||
debian/tmp/var/Campcaster/testAudio.ogg \
|
|
||||||
debian/campcaster-studio/usr/share/campcaster/www/
|
|
||||||
mkdir -p debian/campcaster-studio/usr/bin/
|
|
||||||
ln -s /usr/lib/campcaster/bin/campcaster-studio.sh debian/campcaster-studio/usr/bin/campcaster-studio
|
|
||||||
# move -studio's share to -data
|
|
||||||
mkdir -p debian/campcaster-data/usr/share/
|
|
||||||
mv debian/campcaster-station/usr/share/campcaster debian/campcaster-data/usr/share/
|
|
||||||
rmdir debian/campcaster-station/usr/share/
|
|
||||||
|
|
||||||
override_dh_fixperms:
|
|
||||||
dh_fixperms
|
|
||||||
#
|
|
||||||
chmod +x debian/campcaster-data/usr/share/campcaster/www/storageServer/var/install/airtime-user.php
|
|
||||||
chmod -x debian/campcaster-data/usr/share/campcaster/www/storageServer/var/cron/Crontab.php \
|
|
||||||
debian/campcaster-data/usr/share/campcaster/www/storageServer/var/cron/CronJob.php \
|
|
||||||
debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/templates/popup/PLAYLIST.downloadExportedFile.tpl \
|
|
||||||
debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/Smarty/libs/plugins/outputfilter.localizer.php \
|
|
||||||
debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/templates/playlist/import.tpl \
|
|
||||||
debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/Smarty/libs/Smarty.class.php \
|
|
||||||
debian/campcaster-data/usr/share/campcaster/www/storageServer/var/Backup.php \
|
|
||||||
debian/campcaster-data/usr/share/campcaster/www/storageServer/var/cron/Cron.php \
|
|
||||||
debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/templates/popup/PLAYLIST.export.tpl \
|
|
||||||
debian/campcaster-data/usr/share/campcaster/www/htmlUI/var/Smarty/libs/plugins/postfilter.template_marker.php
|
|
||||||
|
|
||||||
override_dh_shlibdeps:
|
|
||||||
LD_LIBRARY_PATH=debian/campcaster-libs/usr/lib/campcaster/ dh_shlibdeps
|
|
||||||
|
|
||||||
override_dh_makeshlibs:
|
|
||||||
dh_makeshlibs -n
|
|
||||||
|
|
||||||
override_dh_installinit:
|
|
||||||
dh_installinit --params "defaults 92"
|
|
|
@ -1 +0,0 @@
|
||||||
3.0 (quilt)
|
|
|
@ -1,2 +0,0 @@
|
||||||
version=3
|
|
||||||
http://sf.net/campcaster/campcaster-([0-9].+)\.tar\.bz2
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
<?php
|
||||||
|
/* to enable this script, make sure phar files are enabled
|
||||||
|
* phar.readonly = Off
|
||||||
|
* in /etc/php5/cli/php.ini
|
||||||
|
*/
|
||||||
|
|
||||||
|
$dir = __DIR__;
|
||||||
|
$command = "php $dir/../library/doctrine/migrations/doctrine-migrations.phar --configuration=$dir/../install/DoctrineMigrations/migrations.xml --db-configuration=$dir/../library/doctrine/migrations/migrations-db.php --no-interaction migrations:generate";
|
||||||
|
system($command);
|
|
@ -9,13 +9,13 @@ class Version20110308003959 extends AbstractMigration
|
||||||
{
|
{
|
||||||
public function up(Schema $schema)
|
public function up(Schema $schema)
|
||||||
{
|
{
|
||||||
$table = $schema->createTable('users');
|
$table = $schema->getTable("cc_show_instances");
|
||||||
$table->addColumn('username', 'string');
|
$table->addColumn("record", "boolean", array( 'notnull' => 0, 'default' => 0));
|
||||||
$table->addColumn('password', 'string');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function down(Schema $schema)
|
public function down(Schema $schema)
|
||||||
{
|
{
|
||||||
$schema->dropTable('users');
|
$table = $schema->getTable("cc_show_instances");
|
||||||
|
$table->dropColumn("record");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
xsi:schemaLocation="http://doctrine-project.org/schemas/migrations/configuration
|
xsi:schemaLocation="http://doctrine-project.org/schemas/migrations/configuration
|
||||||
http://doctrine-project.org/schemas/migrations/configuration.xsd">
|
http://doctrine-project.org/schemas/migrations/configuration.xsd">
|
||||||
|
|
||||||
<name>Doctrine Sandbox Migrations</name>
|
<name>Airtime 1.7 Database Upgrade</name>
|
||||||
|
|
||||||
<migrations-namespace>DoctrineMigrations</migrations-namespace>
|
<migrations-namespace>DoctrineMigrations</migrations-namespace>
|
||||||
|
|
||||||
|
|
|
@ -15,141 +15,46 @@ if (isset($arr["DOCUMENT_ROOT"]) && ($arr["DOCUMENT_ROOT"] != "") ) {
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
createAPIKey();
|
|
||||||
|
|
||||||
require_once(dirname(__FILE__).'/../application/configs/conf.php');
|
require_once(dirname(__FILE__).'/../application/configs/conf.php');
|
||||||
require_once(dirname(__FILE__).'/installInit.php');
|
require_once(dirname(__FILE__).'/installInit.php');
|
||||||
|
|
||||||
|
echo "******************************** Install Begin *********************************".PHP_EOL;
|
||||||
function rand_string($len=20, $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789')
|
|
||||||
{
|
|
||||||
$string = '';
|
|
||||||
for ($i = 0; $i < $len; $i++)
|
|
||||||
{
|
|
||||||
$pos = mt_rand(0, strlen($chars)-1);
|
|
||||||
$string .= $chars{$pos};
|
|
||||||
}
|
|
||||||
return $string;
|
|
||||||
}
|
|
||||||
|
|
||||||
function createAPIKey(){
|
|
||||||
|
|
||||||
$api_key = rand_string();
|
|
||||||
updateINIKeyValues(__DIR__.'/../build/airtime.conf', 'api_key', $api_key);
|
|
||||||
updateINIKeyValues(__DIR__.'/../pypo/config.cfg', 'api_key', "'$api_key'");
|
|
||||||
}
|
|
||||||
|
|
||||||
function checkIfRoot(){
|
|
||||||
// Need to check that we are superuser before running this.
|
|
||||||
if(exec("whoami") != "root"){
|
|
||||||
echo "Must be root user.\n";
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function updateINIKeyValues($filename, $property, $value){
|
|
||||||
$lines = file($filename);
|
|
||||||
$n=count($lines);
|
|
||||||
for ($i=0; $i<$n; $i++) {
|
|
||||||
if (strlen($lines[$i]) > strlen($property))
|
|
||||||
if ($property == substr($lines[$i], 0, strlen($property))){
|
|
||||||
$lines[$i] = "$property = $value\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$fp=fopen($filename, 'w');
|
|
||||||
for($i=0; $i<$n; $i++){
|
|
||||||
fwrite($fp, $lines[$i]);
|
|
||||||
}
|
|
||||||
fclose($fp);
|
|
||||||
}
|
|
||||||
|
|
||||||
function directorySetup($CC_CONFIG){
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// Install storage directories
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
echo " *** Directory Setup ***\n";
|
|
||||||
foreach (array('baseFilesDir', 'storageDir') as $d) {
|
|
||||||
$test = file_exists($CC_CONFIG[$d]);
|
|
||||||
if ( $test === FALSE ) {
|
|
||||||
@mkdir($CC_CONFIG[$d], 02775, true);
|
|
||||||
if (file_exists($CC_CONFIG[$d])) {
|
|
||||||
$rp = realpath($CC_CONFIG[$d]);
|
|
||||||
echo " * Directory $rp created\n";
|
|
||||||
} else {
|
|
||||||
echo " * Failed creating {$CC_CONFIG[$d]}\n";
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
} elseif (is_writable($CC_CONFIG[$d])) {
|
|
||||||
$rp = realpath($CC_CONFIG[$d]);
|
|
||||||
echo " * Skipping directory already exists: $rp\n";
|
|
||||||
} else {
|
|
||||||
$rp = realpath($CC_CONFIG[$d]);
|
|
||||||
echo " * WARNING: Directory already exists, but is not writable: $rp\n";
|
|
||||||
//exit(1);
|
|
||||||
}
|
|
||||||
$CC_CONFIG[$d] = $rp;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
checkIfRoot();
|
checkIfRoot();
|
||||||
|
createAPIKey();
|
||||||
updateINIKeyValues('../build/build.properties', 'project.home', realpath(__dir__.'/../'));
|
updateINIKeyValues('../build/build.properties', 'project.home', realpath(__dir__.'/../'));
|
||||||
|
|
||||||
echo "******************************** Install Begin *********************************\n";
|
|
||||||
|
|
||||||
echo " *** Database Installation ***\n";
|
echo PHP_EOL."*** Database Installation ***".PHP_EOL;
|
||||||
|
|
||||||
|
echo "* Creating Airtime Database User".PHP_EOL;
|
||||||
|
createAirtimeDatabaseUser();
|
||||||
|
|
||||||
|
echo "* Creating Airtime Database".PHP_EOL;
|
||||||
|
createAirtimeDatabase();
|
||||||
|
|
||||||
|
|
||||||
// Create the database user
|
airtime_db_connect(true);
|
||||||
$command = "sudo -u postgres psql postgres --command \"CREATE USER {$CC_CONFIG['dsn']['username']} "
|
|
||||||
." ENCRYPTED PASSWORD '{$CC_CONFIG['dsn']['password']}' LOGIN CREATEDB NOCREATEUSER;\" 2>/dev/null";
|
|
||||||
//echo $command."\n";
|
|
||||||
@exec($command, $output, $results);
|
|
||||||
if ($results == 0) {
|
|
||||||
echo " * User {$CC_CONFIG['dsn']['username']} created.\n";
|
|
||||||
} else {
|
|
||||||
echo " * User {$CC_CONFIG['dsn']['username']} already exists.\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
$command = "sudo -u postgres createdb {$CC_CONFIG['dsn']['database']} --owner {$CC_CONFIG['dsn']['username']} 2> /dev/null";
|
echo "* Install Postgresql Scripting Language".PHP_EOL;
|
||||||
//echo $command."\n";
|
installPostgresScriptingLanguage();
|
||||||
@exec($command, $output, $results);
|
|
||||||
if ($results == 0) {
|
|
||||||
echo " * Database '{$CC_CONFIG['dsn']['database']}' created.\n";
|
|
||||||
} else {
|
|
||||||
echo " * Database '{$CC_CONFIG['dsn']['database']}' already exists.\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Connect to DB
|
echo "* Creating Database Tables".PHP_EOL;
|
||||||
campcaster_db_connect(true);
|
createAirtimeDatabaseTables();
|
||||||
|
doctrineMigrateTables(__DIR__);
|
||||||
|
|
||||||
// Install postgres scripting language
|
echo "* Storage Directory Setup".PHP_EOL;
|
||||||
$langIsInstalled = $CC_DBC->GetOne('SELECT COUNT(*) FROM pg_language WHERE lanname = \'plpgsql\'');
|
storageDirectorySetup($CC_CONFIG);
|
||||||
if ($langIsInstalled == '0') {
|
|
||||||
echo " * Installing Postgres scripting language\n";
|
|
||||||
$sql = "CREATE LANGUAGE 'plpgsql'";
|
|
||||||
camp_install_query($sql, false);
|
|
||||||
} else {
|
|
||||||
echo " * Postgres scripting language already installed\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
echo " * Creating database tables\n";
|
echo "* Setting Dir Permissions".PHP_EOL;
|
||||||
// Put Propel sql files in Database
|
|
||||||
$command = __DIR__."/../library/propel/generator/bin/propel-gen ../build/ insert-sql 2>propel-error.log";
|
|
||||||
@exec($command, $output, $results);
|
|
||||||
|
|
||||||
directorySetup($CC_CONFIG);
|
|
||||||
|
|
||||||
echo " * Setting dir permissions...\n";
|
|
||||||
install_setDirPermissions($CC_CONFIG["storageDir"]);
|
install_setDirPermissions($CC_CONFIG["storageDir"]);
|
||||||
|
|
||||||
echo " * Importing sample audio clips \n";
|
echo "* Importing Sample Audio Clips".PHP_EOL;
|
||||||
$command = __DIR__."/../utils/airtime-import --copy ../audio_samples/ > /dev/null";
|
system(__DIR__."/../utils/airtime-import --copy ../audio_samples/ > /dev/null");
|
||||||
@exec($command, $output, $results);
|
|
||||||
|
|
||||||
$command = "python ".__DIR__."/../pypo/install/pypo-install.py";
|
echo PHP_EOL."*** Pypo Installation ***".PHP_EOL;
|
||||||
system($command);
|
system("python ".__DIR__."/../pypo/install/pypo-install.py");
|
||||||
echo "******************************* Install Complete *******************************\n";
|
|
||||||
|
|
||||||
|
echo "******************************* Install Complete *******************************".PHP_EOL;
|
||||||
|
|
||||||
|
|
|
@ -10,35 +10,25 @@ $arr = array_diff_assoc($_SERVER, $_ENV);
|
||||||
if (isset($arr["DOCUMENT_ROOT"]) && ($arr["DOCUMENT_ROOT"] != "") ) {
|
if (isset($arr["DOCUMENT_ROOT"]) && ($arr["DOCUMENT_ROOT"] != "") ) {
|
||||||
header("HTTP/1.1 400");
|
header("HTTP/1.1 400");
|
||||||
header("Content-type: text/plain; charset=UTF-8");
|
header("Content-type: text/plain; charset=UTF-8");
|
||||||
echo "400 Not executable\r\n";
|
echo "400 Not executable".PHP_EOL;
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Need to check that we are superuser before running this.
|
|
||||||
if(exec("whoami") != "root"){
|
|
||||||
echo "Must be root user.\n";
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
echo "******************************* Uninstall Begin ********************************\n";
|
|
||||||
|
|
||||||
require_once(dirname(__FILE__).'/../application/configs/conf.php');
|
require_once(dirname(__FILE__).'/../application/configs/conf.php');
|
||||||
require_once(dirname(__FILE__).'/installInit.php');
|
require_once(dirname(__FILE__).'/installInit.php');
|
||||||
|
|
||||||
function airtime_uninstall_delete_files($p_path)
|
// Need to check that we are superuser before running this.
|
||||||
{
|
checkIfRoot();
|
||||||
$command = "rm -rf $p_path";
|
|
||||||
exec($command);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
echo "******************************* Uninstall Begin ********************************".PHP_EOL;
|
||||||
//------------------------------------------------------------------------
|
//------------------------------------------------------------------------
|
||||||
// Delete the database
|
// Delete the database
|
||||||
// Note: Do not put a call to campcaster_db_connect()
|
// Note: Do not put a call to airtime_db_connect()
|
||||||
// before this function, even if you called $CC_DBC->disconnect(), there will
|
// before this function, even if you called $CC_DBC->disconnect(), there will
|
||||||
// still be a connection to the database and you wont be able to delete it.
|
// still be a connection to the database and you wont be able to delete it.
|
||||||
//------------------------------------------------------------------------
|
//------------------------------------------------------------------------
|
||||||
echo " * Dropping the database '".$CC_CONFIG['dsn']['database']."'...\n";
|
echo " * Dropping the database '".$CC_CONFIG['dsn']['database']."'...".PHP_EOL;
|
||||||
$command = "sudo -u postgres dropdb {$CC_CONFIG['dsn']['database']} 2> /dev/null";
|
$command = "sudo -u postgres dropdb {$CC_CONFIG['dsn']['database']} 2> /dev/null";
|
||||||
@exec($command, $output, $dbDeleteFailed);
|
@exec($command, $output, $dbDeleteFailed);
|
||||||
|
|
||||||
|
@ -47,174 +37,38 @@ $command = "sudo -u postgres dropdb {$CC_CONFIG['dsn']['database']} 2> /dev/null
|
||||||
// We do this if dropping the database fails above.
|
// We do this if dropping the database fails above.
|
||||||
//------------------------------------------------------------------------
|
//------------------------------------------------------------------------
|
||||||
if ($dbDeleteFailed) {
|
if ($dbDeleteFailed) {
|
||||||
echo " * Couldn't delete the database, so deleting all the DB tables...\n";
|
echo " * Couldn't delete the database, so deleting all the DB tables...".PHP_EOL;
|
||||||
campcaster_db_connect(true);
|
airtime_db_connect(true);
|
||||||
if (!PEAR::isError($CC_DBC)) {
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['prefTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['prefTable']."...";
|
|
||||||
$sql = "DROP TABLE ".$CC_CONFIG['prefTable'];
|
|
||||||
camp_install_query($sql, false);
|
|
||||||
|
|
||||||
$CC_DBC->dropSequence($CC_CONFIG['prefTable']."_id");
|
if (!PEAR::isError($CC_DBC)) {
|
||||||
echo "done.\n";
|
$sql = "select * from pg_tables where tableowner = 'airtime'";
|
||||||
} else {
|
$rows = airtime_get_query($sql);
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['prefTable']."\n";
|
|
||||||
|
foreach ($rows as $row){
|
||||||
|
$tablename = $row["tablename"];
|
||||||
|
echo " * Removing database table $tablename...";
|
||||||
|
|
||||||
|
if (airtime_db_table_exists($tablename)){
|
||||||
|
$sql = "DROP TABLE $tablename CASCADE";
|
||||||
|
airtime_install_query($sql, false);
|
||||||
|
|
||||||
|
$CC_DBC->dropSequence($tablename."_id");
|
||||||
|
}
|
||||||
|
echo "done.".PHP_EOL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['transTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['transTable']."...";
|
|
||||||
$sql = "DROP TABLE ".$CC_CONFIG['transTable'];
|
|
||||||
camp_install_query($sql, false);
|
|
||||||
|
|
||||||
$CC_DBC->dropSequence($CC_CONFIG['transTable']."_id");
|
|
||||||
echo "done.\n";
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['transTable']."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['filesTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['filesTable']."...";
|
|
||||||
$sql = "DROP TABLE ".$CC_CONFIG['filesTable']." CASCADE";
|
|
||||||
camp_install_query($sql);
|
|
||||||
$CC_DBC->dropSequence($CC_CONFIG['filesTable']."_id");
|
|
||||||
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['filesTable']."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['playListTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['playListTable']."...";
|
|
||||||
$sql = "DROP TABLE ".$CC_CONFIG['playListTable']." CASCADE";
|
|
||||||
camp_install_query($sql);
|
|
||||||
$CC_DBC->dropSequence($CC_CONFIG['playListTable']."_id");
|
|
||||||
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['playListTable']."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['playListContentsTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['playListContentsTable']."...";
|
|
||||||
$sql = "DROP TABLE ".$CC_CONFIG['playListContentsTable'];
|
|
||||||
camp_install_query($sql);
|
|
||||||
$CC_DBC->dropSequence($CC_CONFIG['playListContentsTable']."_id");
|
|
||||||
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['playListContentsTable']."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
//if (camp_db_sequence_exists($CC_CONFIG['filesSequence'])) {
|
|
||||||
// $sql = "DROP SEQUENCE ".$CC_CONFIG['filesSequence'];
|
|
||||||
// camp_install_query($sql);
|
|
||||||
//}
|
|
||||||
//
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['accessTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['accessTable']."...";
|
|
||||||
$sql = "DROP TABLE ".$CC_CONFIG['accessTable'];
|
|
||||||
camp_install_query($sql);
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['accessTable']."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['permTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['permTable']."...";
|
|
||||||
$sql = "DROP TABLE ".$CC_CONFIG['permTable'];
|
|
||||||
camp_install_query($sql, false);
|
|
||||||
|
|
||||||
$CC_DBC->dropSequence($CC_CONFIG['permTable']."_id");
|
|
||||||
echo "done.\n";
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['permTable']."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['sessTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['sessTable']."...";
|
|
||||||
$sql = "DROP TABLE ".$CC_CONFIG['sessTable'];
|
|
||||||
camp_install_query($sql);
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['sessTable']."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['subjTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['subjTable']."...";
|
|
||||||
$CC_DBC->dropSequence($CC_CONFIG['subjTable']."_id");
|
|
||||||
|
|
||||||
$sql = "DROP TABLE ".$CC_CONFIG['subjTable']." CASCADE";
|
|
||||||
camp_install_query($sql, false);
|
|
||||||
|
|
||||||
echo "done.\n";
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['subjTable']."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['smembTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['smembTable']."...";
|
|
||||||
$sql = "DROP TABLE ".$CC_CONFIG['smembTable'];
|
|
||||||
camp_install_query($sql, false);
|
|
||||||
|
|
||||||
$CC_DBC->dropSequence($CC_CONFIG['smembTable']."_id");
|
|
||||||
echo "done.\n";
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['smembTable']."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['scheduleTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['scheduleTable']."...";
|
|
||||||
camp_install_query("DROP TABLE ".$CC_CONFIG['scheduleTable']);
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['scheduleTable']."\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (camp_db_table_exists($CC_CONFIG['backupTable'])) {
|
|
||||||
echo " * Removing database table ".$CC_CONFIG['backupTable']."...";
|
|
||||||
camp_install_query("DROP TABLE ".$CC_CONFIG['backupTable']);
|
|
||||||
} else {
|
|
||||||
echo " * Skipping: database table ".$CC_CONFIG['backupTable']."\n";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// Uninstall Cron job
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
/*
|
|
||||||
$old_regex = '/transportCron\.php/';
|
|
||||||
echo " * Uninstalling cron job...";
|
|
||||||
|
|
||||||
$cron = new Cron();
|
|
||||||
$access = $cron->openCrontab('write');
|
|
||||||
if ($access != 'write') {
|
|
||||||
do {
|
|
||||||
$r = $cron->forceWriteable();
|
|
||||||
} while ($r);
|
|
||||||
}
|
|
||||||
foreach ($cron->ct->getByType(CRON_CMD) as $id => $line) {
|
|
||||||
if (preg_match($old_regex, $line['command'])) {
|
|
||||||
//echo " removing cron entry\n";
|
|
||||||
$cron->ct->delEntry($id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$cron->closeCrontab();
|
|
||||||
echo "done.\n";
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
// Disconnect from the database
|
|
||||||
//------------------------------------------------------------------------
|
|
||||||
//echo " * Disconnecting from database...\n";
|
|
||||||
//$CC_DBC->disconnect();
|
|
||||||
|
|
||||||
//------------------------------------------------------------------------
|
//------------------------------------------------------------------------
|
||||||
// Delete the user
|
// Delete the user
|
||||||
//------------------------------------------------------------------------
|
//------------------------------------------------------------------------
|
||||||
echo " * Deleting database user '{$CC_CONFIG['dsn']['username']}'...\n";
|
echo " * Deleting database user '{$CC_CONFIG['dsn']['username']}'...".PHP_EOL;
|
||||||
$command = "sudo -u postgres psql postgres --command \"DROP USER {$CC_CONFIG['dsn']['username']}\" 2> /dev/null";
|
$command = "sudo -u postgres psql postgres --command \"DROP USER {$CC_CONFIG['dsn']['username']}\" 2> /dev/null";
|
||||||
@exec($command, $output, $results);
|
@exec($command, $output, $results);
|
||||||
if ($results == 0) {
|
if ($results == 0) {
|
||||||
echo " * User '{$CC_CONFIG['dsn']['username']}' deleted.\n";
|
echo " * User '{$CC_CONFIG['dsn']['username']}' deleted.".PHP_EOL;
|
||||||
} else {
|
} else {
|
||||||
echo " * Nothing to delete..\n";
|
echo " * Nothing to delete..".PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -226,5 +80,5 @@ airtime_uninstall_delete_files($CC_CONFIG['storageDir']);
|
||||||
|
|
||||||
$command = "python ".__DIR__."/../pypo/install/pypo-uninstall.py";
|
$command = "python ".__DIR__."/../pypo/install/pypo-uninstall.py";
|
||||||
system($command);
|
system($command);
|
||||||
echo "****************************** Uninstall Complete ******************************\n";
|
echo "****************************** Uninstall Complete ******************************".PHP_EOL;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,33 @@
|
||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* @package Airtime
|
||||||
|
* @subpackage StorageServer
|
||||||
|
* @copyright 2010 Sourcefabric O.P.S.
|
||||||
|
* @license http://www.gnu.org/licenses/gpl.txt
|
||||||
|
*/
|
||||||
|
|
||||||
$dir = __DIR__;
|
// Do not allow remote execution
|
||||||
|
$arr = array_diff_assoc($_SERVER, $_ENV);
|
||||||
|
if (isset($arr["DOCUMENT_ROOT"]) && ($arr["DOCUMENT_ROOT"] != "") ) {
|
||||||
|
header("HTTP/1.1 400");
|
||||||
|
header("Content-type: text/plain; charset=UTF-8");
|
||||||
|
echo "400 Not executable\r\n";
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once(dirname(__FILE__).'/installInit.php');
|
||||||
|
|
||||||
|
checkIfRoot();
|
||||||
|
|
||||||
|
echo "******************************** Update Begin *********************************".PHP_EOL;
|
||||||
|
updateINIKeyValues('../build/build.properties', 'project.home', realpath(__dir__.'/../'));
|
||||||
|
|
||||||
|
echo PHP_EOL."*** Updating Database Tables ***".PHP_EOL;
|
||||||
|
doctrineMigrateTables(__DIR__);
|
||||||
|
|
||||||
|
echo PHP_EOL."*** Updating Pypo ***".PHP_EOL;
|
||||||
|
system("python ".__DIR__."/../pypo/install/pypo-install.py");
|
||||||
|
|
||||||
|
echo "******************************* Update Complete *******************************".PHP_EOL;
|
||||||
|
|
||||||
$command = "php $dir/../library/doctrine/migrations/doctrine-migrations.phar --configuration=$dir/DoctrineMigrations/migrations.xml --db-configuration=$dir/../library/doctrine/migrations/migrations-db.php migrations:status";
|
|
||||||
system($command);
|
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,9 @@ if (!function_exists('pg_connect')) {
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once(dirname(__FILE__).'/../library/pear/DB.php');
|
require_once(dirname(__FILE__).'/../library/pear/DB.php');
|
||||||
|
require_once(dirname(__FILE__).'/../application/configs/conf.php');
|
||||||
|
|
||||||
function camp_db_table_exists($p_name)
|
function airtime_db_table_exists($p_name)
|
||||||
{
|
{
|
||||||
global $CC_DBC;
|
global $CC_DBC;
|
||||||
$sql = "SELECT * FROM ".$p_name;
|
$sql = "SELECT * FROM ".$p_name;
|
||||||
|
@ -17,18 +18,17 @@ function camp_db_table_exists($p_name)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function camp_db_sequence_exists($p_name)
|
function airtime_get_query($sql)
|
||||||
{
|
{
|
||||||
global $CC_DBC;
|
global $CC_DBC;
|
||||||
$sql = "SELECT 1 FROM pg_class where relname = '$p_name'";
|
$result = $CC_DBC->GetAll($sql);
|
||||||
$result = $CC_DBC->GetOne($sql);
|
if (PEAR::isError($result)) {
|
||||||
if (!PEAR::isError($result) && $result == "1") {
|
return array();
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
return false;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
function camp_install_query($sql, $verbose = true)
|
function airtime_install_query($sql, $verbose = true)
|
||||||
{
|
{
|
||||||
global $CC_DBC;
|
global $CC_DBC;
|
||||||
$result = $CC_DBC->query($sql);
|
$result = $CC_DBC->query($sql);
|
||||||
|
@ -43,20 +43,20 @@ function camp_install_query($sql, $verbose = true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function campcaster_db_connect($p_exitOnError = true) {
|
function airtime_db_connect($p_exitOnError = true) {
|
||||||
global $CC_DBC, $CC_CONFIG;
|
global $CC_DBC, $CC_CONFIG;
|
||||||
$CC_DBC = DB::connect($CC_CONFIG['dsn'], TRUE);
|
$CC_DBC = DB::connect($CC_CONFIG['dsn'], TRUE);
|
||||||
if (PEAR::isError($CC_DBC)) {
|
if (PEAR::isError($CC_DBC)) {
|
||||||
echo $CC_DBC->getMessage()."\n";
|
echo $CC_DBC->getMessage().PHP_EOL;
|
||||||
echo $CC_DBC->getUserInfo()."\n";
|
echo $CC_DBC->getUserInfo().PHP_EOL;
|
||||||
echo "Database connection problem.\n";
|
echo "Database connection problem.".PHP_EOL;
|
||||||
echo "Check if database '{$CC_CONFIG['dsn']['database']}' exists".
|
echo "Check if database '{$CC_CONFIG['dsn']['database']}' exists".
|
||||||
" with corresponding permissions.\n";
|
" with corresponding permissions.".PHP_EOL;
|
||||||
if ($p_exitOnError) {
|
if ($p_exitOnError) {
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
echo " * Connected to database\n";
|
echo "* Connected to database".PHP_EOL;
|
||||||
$CC_DBC->setFetchMode(DB_FETCHMODE_ASSOC);
|
$CC_DBC->setFetchMode(DB_FETCHMODE_ASSOC);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -68,20 +68,129 @@ function install_setDirPermissions($filePath) {
|
||||||
$fileperms = $fileperms | 0x0010; // group write bit
|
$fileperms = $fileperms | 0x0010; // group write bit
|
||||||
$fileperms = $fileperms | 0x0400; // group sticky bit
|
$fileperms = $fileperms | 0x0400; // group sticky bit
|
||||||
chmod($filePath, $fileperms);
|
chmod($filePath, $fileperms);
|
||||||
|
}
|
||||||
|
|
||||||
// // Verify Smarty template dir permissions
|
function rand_string($len=20, $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789')
|
||||||
// $fileGroup = filegroup($CC_CONFIG["smartyTemplateCompiled"]);
|
{
|
||||||
// $groupOwner = (function_exists('posix_getgrgid'))?@posix_getgrgid($fileGroup):'';
|
$string = '';
|
||||||
// if (!empty($groupOwner) && ($groupOwner["name"] != $CC_CONFIG["webServerUser"])) {
|
for ($i = 0; $i < $len; $i++)
|
||||||
// echo " * Error: Your directory permissions for {$filePath} are not set correctly.<br>\n";
|
{
|
||||||
// echo " * The group perms need to be set to the web server user, in this case '{$CC_CONFIG['webServerUser']}'.<br>\n";
|
$pos = mt_rand(0, strlen($chars)-1);
|
||||||
// echo " * Currently the group is set to be '{$groupOwner['name']}'.<br>\n";
|
$string .= $chars{$pos};
|
||||||
// exit(1);
|
}
|
||||||
// }
|
return $string;
|
||||||
// if (!($fileperms & 0x0400)) {
|
}
|
||||||
// echo " * Error: Sticky bit not set for {$filePath}.<br>\n";
|
|
||||||
// exit(1);
|
function createAPIKey(){
|
||||||
// }
|
|
||||||
|
$api_key = rand_string();
|
||||||
|
updateINIKeyValues(__DIR__.'/../build/airtime.conf', 'api_key', $api_key);
|
||||||
|
updateINIKeyValues(__DIR__.'/../pypo/config.cfg', 'api_key', "'$api_key'");
|
||||||
|
}
|
||||||
|
|
||||||
|
function checkIfRoot(){
|
||||||
|
// Need to check that we are superuser before running this.
|
||||||
|
if(exec("whoami") != "root"){
|
||||||
|
echo "Must be root user.\n";
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateINIKeyValues($filename, $property, $value){
|
||||||
|
$lines = file($filename);
|
||||||
|
$n=count($lines);
|
||||||
|
for ($i=0; $i<$n; $i++) {
|
||||||
|
if (strlen($lines[$i]) > strlen($property))
|
||||||
|
if ($property == substr($lines[$i], 0, strlen($property))){
|
||||||
|
$lines[$i] = "$property = $value\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$fp=fopen($filename, 'w');
|
||||||
|
for($i=0; $i<$n; $i++){
|
||||||
|
fwrite($fp, $lines[$i]);
|
||||||
|
}
|
||||||
|
fclose($fp);
|
||||||
|
}
|
||||||
|
|
||||||
|
function storageDirectorySetup($CC_CONFIG){
|
||||||
|
global $CC_CONFIG, $CC_DBC;
|
||||||
|
|
||||||
|
echo PHP_EOL."*** Directory Setup ***".PHP_EOL;
|
||||||
|
foreach (array('baseFilesDir', 'storageDir') as $d) {
|
||||||
|
if ( !file_exists($CC_CONFIG[$d]) ) {
|
||||||
|
@mkdir($CC_CONFIG[$d], 02775, true);
|
||||||
|
if (file_exists($CC_CONFIG[$d])) {
|
||||||
|
$rp = realpath($CC_CONFIG[$d]);
|
||||||
|
echo "* Directory $rp created".PHP_EOL;
|
||||||
|
} else {
|
||||||
|
echo "* Failed creating {$CC_CONFIG[$d]}".PHP_EOL;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
} elseif (is_writable($CC_CONFIG[$d])) {
|
||||||
|
$rp = realpath($CC_CONFIG[$d]);
|
||||||
|
echo "* Skipping directory already exists: $rp".PHP_EOL;
|
||||||
|
} else {
|
||||||
|
$rp = realpath($CC_CONFIG[$d]);
|
||||||
|
echo "* WARNING: Directory already exists, but is not writable: $rp".PHP_EOL;
|
||||||
|
}
|
||||||
|
$CC_CONFIG[$d] = $rp;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function createAirtimeDatabaseUser(){
|
||||||
|
global $CC_CONFIG;
|
||||||
|
// Create the database user
|
||||||
|
$command = "sudo -u postgres psql postgres --command \"CREATE USER {$CC_CONFIG['dsn']['username']} "
|
||||||
|
." ENCRYPTED PASSWORD '{$CC_CONFIG['dsn']['password']}' LOGIN CREATEDB NOCREATEUSER;\" 2>/dev/null";
|
||||||
|
|
||||||
|
@exec($command, $output, $results);
|
||||||
|
if ($results == 0) {
|
||||||
|
echo "* User {$CC_CONFIG['dsn']['username']} created.".PHP_EOL;
|
||||||
|
} else {
|
||||||
|
echo "* User {$CC_CONFIG['dsn']['username']} already exists.".PHP_EOL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function createAirtimeDatabase(){
|
||||||
|
global $CC_CONFIG;
|
||||||
|
|
||||||
|
$command = "sudo -u postgres createdb {$CC_CONFIG['dsn']['database']} --owner {$CC_CONFIG['dsn']['username']} 2> /dev/null";
|
||||||
|
@exec($command, $output, $results);
|
||||||
|
if ($results == 0) {
|
||||||
|
echo "* Database '{$CC_CONFIG['dsn']['database']}' created.".PHP_EOL;
|
||||||
|
} else {
|
||||||
|
echo "* Database '{$CC_CONFIG['dsn']['database']}' already exists.".PHP_EOL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function installPostgresScriptingLanguage(){
|
||||||
|
global $CC_DBC;
|
||||||
|
// Install postgres scripting language
|
||||||
|
$langIsInstalled = $CC_DBC->GetOne('SELECT COUNT(*) FROM pg_language WHERE lanname = \'plpgsql\'');
|
||||||
|
if ($langIsInstalled == '0') {
|
||||||
|
echo "* Installing Postgres scripting language".PHP_EOL;
|
||||||
|
$sql = "CREATE LANGUAGE 'plpgsql'";
|
||||||
|
airtime_install_query($sql, false);
|
||||||
|
} else {
|
||||||
|
echo "* Postgres scripting language already installed".PHP_EOL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function createAirtimeDatabaseTables(){
|
||||||
|
// Put Propel sql files in Database
|
||||||
|
$command = __DIR__."/../library/propel/generator/bin/propel-gen ../build/ insert-sql 2>propel-error.log";
|
||||||
|
@exec($command, $output, $results);
|
||||||
|
}
|
||||||
|
|
||||||
|
function doctrineMigrateTables($dir){
|
||||||
|
$command = "php $dir/../library/doctrine/migrations/doctrine-migrations.phar --configuration=$dir/DoctrineMigrations/migrations.xml --db-configuration=$dir/../library/doctrine/migrations/migrations-db.php --no-interaction migrations:migrate";
|
||||||
|
system($command);
|
||||||
|
}
|
||||||
|
|
||||||
|
function airtime_uninstall_delete_files($p_path)
|
||||||
|
{
|
||||||
|
$command = "rm -rf $p_path";
|
||||||
|
exec($command);
|
||||||
|
}
|
||||||
|
|
|
@ -1,662 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# Documentation/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/Documentation/Makefile.am
|
|
||||||
# Description: Ecasound documentation files
|
|
||||||
# License: GPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
subdir = Documentation
|
|
||||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
SOURCES =
|
|
||||||
DIST_SOURCES =
|
|
||||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
|
||||||
html-recursive info-recursive install-data-recursive \
|
|
||||||
install-exec-recursive install-info-recursive \
|
|
||||||
install-recursive installcheck-recursive installdirs-recursive \
|
|
||||||
pdf-recursive ps-recursive uninstall-info-recursive \
|
|
||||||
uninstall-recursive
|
|
||||||
ETAGS = etags
|
|
||||||
CTAGS = ctags
|
|
||||||
DIST_SUBDIRS = $(SUBDIRS)
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
SUBDIRS = users_guide programmers_guide
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Files going into distribution:
|
|
||||||
man1_pages_to_install = \
|
|
||||||
ecasound.1 \
|
|
||||||
ecasound-iam.1 \
|
|
||||||
ecatools.1 \
|
|
||||||
ecaconvert.1 \
|
|
||||||
ecafixdc.1 \
|
|
||||||
ecalength.1 \
|
|
||||||
ecaplay.1 \
|
|
||||||
ecamonitor.1 \
|
|
||||||
ecanormalize.1 \
|
|
||||||
ecasignalview.1
|
|
||||||
|
|
||||||
man5_pages_to_install = \
|
|
||||||
ecasoundrc.5
|
|
||||||
|
|
||||||
html_man_pages = \
|
|
||||||
ecasound_manpage.html \
|
|
||||||
ecasoundrc_manpage.html \
|
|
||||||
ecatools_manpage.html \
|
|
||||||
ecalength_manpage.html \
|
|
||||||
ecasound-iam_manpage.html
|
|
||||||
|
|
||||||
EXTRA_DIST = $(man1_pages_to_install) \
|
|
||||||
$(man5_pages_to_install) \
|
|
||||||
$(html_man_pages)
|
|
||||||
|
|
||||||
all: all-recursive
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Documentation/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign Documentation/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
|
|
||||||
# This directory's subdirectories are mostly independent; you can cd
|
|
||||||
# into them and run `make' without going through this Makefile.
|
|
||||||
# To change the values of `make' variables: instead of editing Makefiles,
|
|
||||||
# (1) if the variable is set in `config.status', edit `config.status'
|
|
||||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
|
||||||
# (2) otherwise, pass the desired values on the `make' command line.
|
|
||||||
$(RECURSIVE_TARGETS):
|
|
||||||
@failcom='exit 1'; \
|
|
||||||
for f in x $$MAKEFLAGS; do \
|
|
||||||
case $$f in \
|
|
||||||
*=* | --[!k]*);; \
|
|
||||||
*k*) failcom='fail=yes';; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
dot_seen=no; \
|
|
||||||
target=`echo $@ | sed s/-recursive//`; \
|
|
||||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
||||||
echo "Making $$target in $$subdir"; \
|
|
||||||
if test "$$subdir" = "."; then \
|
|
||||||
dot_seen=yes; \
|
|
||||||
local_target="$$target-am"; \
|
|
||||||
else \
|
|
||||||
local_target="$$target"; \
|
|
||||||
fi; \
|
|
||||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
||||||
|| eval $$failcom; \
|
|
||||||
done; \
|
|
||||||
if test "$$dot_seen" = "no"; then \
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
|
||||||
fi; test -z "$$fail"
|
|
||||||
|
|
||||||
mostlyclean-recursive clean-recursive distclean-recursive \
|
|
||||||
maintainer-clean-recursive:
|
|
||||||
@failcom='exit 1'; \
|
|
||||||
for f in x $$MAKEFLAGS; do \
|
|
||||||
case $$f in \
|
|
||||||
*=* | --[!k]*);; \
|
|
||||||
*k*) failcom='fail=yes';; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
dot_seen=no; \
|
|
||||||
case "$@" in \
|
|
||||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
|
||||||
*) list='$(SUBDIRS)' ;; \
|
|
||||||
esac; \
|
|
||||||
rev=''; for subdir in $$list; do \
|
|
||||||
if test "$$subdir" = "."; then :; else \
|
|
||||||
rev="$$subdir $$rev"; \
|
|
||||||
fi; \
|
|
||||||
done; \
|
|
||||||
rev="$$rev ."; \
|
|
||||||
target=`echo $@ | sed s/-recursive//`; \
|
|
||||||
for subdir in $$rev; do \
|
|
||||||
echo "Making $$target in $$subdir"; \
|
|
||||||
if test "$$subdir" = "."; then \
|
|
||||||
local_target="$$target-am"; \
|
|
||||||
else \
|
|
||||||
local_target="$$target"; \
|
|
||||||
fi; \
|
|
||||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
||||||
|| eval $$failcom; \
|
|
||||||
done && test -z "$$fail"
|
|
||||||
tags-recursive:
|
|
||||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
||||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
|
||||||
done
|
|
||||||
ctags-recursive:
|
|
||||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
||||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
|
||||||
done
|
|
||||||
|
|
||||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
mkid -fID $$unique
|
|
||||||
tags: TAGS
|
|
||||||
|
|
||||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
|
||||||
include_option=--etags-include; \
|
|
||||||
empty_fix=.; \
|
|
||||||
else \
|
|
||||||
include_option=--include; \
|
|
||||||
empty_fix=; \
|
|
||||||
fi; \
|
|
||||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
||||||
if test "$$subdir" = .; then :; else \
|
|
||||||
test ! -f $$subdir/TAGS || \
|
|
||||||
tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
|
|
||||||
fi; \
|
|
||||||
done; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
|
||||||
test -n "$$unique" || unique=$$empty_fix; \
|
|
||||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
||||||
$$tags $$unique; \
|
|
||||||
fi
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
|
||||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
||||||
$$tags $$unique
|
|
||||||
|
|
||||||
GTAGS:
|
|
||||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
||||||
&& cd $(top_srcdir) \
|
|
||||||
&& gtags -i $(GTAGS_ARGS) $$here
|
|
||||||
|
|
||||||
distclean-tags:
|
|
||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
|
||||||
if test "$$subdir" = .; then :; else \
|
|
||||||
test -d "$(distdir)/$$subdir" \
|
|
||||||
|| $(mkdir_p) "$(distdir)/$$subdir" \
|
|
||||||
|| exit 1; \
|
|
||||||
distdir=`$(am__cd) $(distdir) && pwd`; \
|
|
||||||
top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
|
|
||||||
(cd $$subdir && \
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) \
|
|
||||||
top_distdir="$$top_distdir" \
|
|
||||||
distdir="$$distdir/$$subdir" \
|
|
||||||
distdir) \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
check: check-recursive
|
|
||||||
all-am: Makefile
|
|
||||||
installdirs: installdirs-recursive
|
|
||||||
installdirs-am:
|
|
||||||
install: install-recursive
|
|
||||||
install-exec: install-exec-recursive
|
|
||||||
install-data: install-data-recursive
|
|
||||||
uninstall: uninstall-recursive
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-recursive
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-recursive
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-generic distclean-libtool \
|
|
||||||
distclean-tags
|
|
||||||
|
|
||||||
dvi: dvi-recursive
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-recursive
|
|
||||||
|
|
||||||
info: info-recursive
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am: install-data-local
|
|
||||||
|
|
||||||
install-exec-am:
|
|
||||||
|
|
||||||
install-info: install-info-recursive
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-recursive
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-recursive
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-recursive
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-recursive
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am uninstall-local
|
|
||||||
|
|
||||||
uninstall-info: uninstall-info-recursive
|
|
||||||
|
|
||||||
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \
|
|
||||||
clean clean-generic clean-libtool clean-recursive ctags \
|
|
||||||
ctags-recursive distclean distclean-generic distclean-libtool \
|
|
||||||
distclean-recursive distclean-tags distdir dvi dvi-am html \
|
|
||||||
html-am info info-am install install-am install-data \
|
|
||||||
install-data-am install-data-local install-exec \
|
|
||||||
install-exec-am install-info install-info-am install-man \
|
|
||||||
install-strip installcheck installcheck-am installdirs \
|
|
||||||
installdirs-am maintainer-clean maintainer-clean-generic \
|
|
||||||
maintainer-clean-recursive mostlyclean mostlyclean-generic \
|
|
||||||
mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
|
|
||||||
tags tags-recursive uninstall uninstall-am uninstall-info-am \
|
|
||||||
uninstall-local
|
|
||||||
|
|
||||||
$(srcdir)/ecasound_manpage.yo \
|
|
||||||
$(srcdir)/ecasoundrc_manpage.yo \
|
|
||||||
$(srcdir)/ecasound-iam_manpage.yo \
|
|
||||||
$(srcdir)/ecatools_manpage.yo \
|
|
||||||
$(srcdir)/ecalength_manpage.yo \
|
|
||||||
$(srcdir)/index.html \
|
|
||||||
$(srcdir)/examples.html \
|
|
||||||
$(srcdir)/manpages.html \
|
|
||||||
$(srcdir)/tutorials.html \
|
|
||||||
$(srcdir)/style_ecasound.css \
|
|
||||||
$(srcdir)/ecasound_osc_interface.txt
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# local targets for generating docs from latex and yodl sources
|
|
||||||
|
|
||||||
all:
|
|
||||||
|
|
||||||
docs: docs-guides docs-manpages
|
|
||||||
|
|
||||||
docs-guides:
|
|
||||||
cd programmers_guide; $(MAKE) $(AM_MAKEFLAGS) docs
|
|
||||||
cd users_guide; $(MAKE) $(AM_MAKEFLAGS) docs
|
|
||||||
|
|
||||||
docs-manpages: $(man1_pages_to_install) \
|
|
||||||
$(man5_pages_to_install) \
|
|
||||||
$(html_man_pages)
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Man pages
|
|
||||||
|
|
||||||
# following are copies of ecatools.1
|
|
||||||
ecaconvert.1: ecatools.1
|
|
||||||
cp ecatools.1 ecaconvert.1
|
|
||||||
ecafixdc.1: ecatools.1
|
|
||||||
cp ecatools.1 ecafixdc.1
|
|
||||||
ecamonitor.1: ecatools.1
|
|
||||||
cp -v ecatools.1 ecamonitor.1
|
|
||||||
ecanormalize.1: ecatools.1
|
|
||||||
cp -v ecatools.1 ecanormalize.1
|
|
||||||
ecaplay.1: ecatools.1
|
|
||||||
cp -v ecatools.1 ecaplay.1
|
|
||||||
ecasignalview.1: ecatools.1
|
|
||||||
cp -v ecatools.1 ecasignalview.1
|
|
||||||
|
|
||||||
%.1: $(srcdir)/%_manpage.yo
|
|
||||||
yodl2man -o $@ $<
|
|
||||||
|
|
||||||
%.5: $(srcdir)/%_manpage.yo
|
|
||||||
yodl2man -o $@ $<
|
|
||||||
|
|
||||||
%.html: $(srcdir)/%.yo
|
|
||||||
yodl2html -o $@ $<
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# doxygen (target removed 2009/Feb)
|
|
||||||
#doxygen:
|
|
||||||
# doxygen doxygen_libkvutils_config
|
|
||||||
# doxygen doxygen_libecasound_config
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Clean targets
|
|
||||||
|
|
||||||
clean:
|
|
||||||
|
|
||||||
clean-docs: clean-manpages clean-guides
|
|
||||||
|
|
||||||
clean-guides:
|
|
||||||
cd programmers_guide; $(MAKE) $(AM_MAKEFLAGS) clean-docs
|
|
||||||
cd users_guide; $(MAKE) $(AM_MAKEFLAGS) clean-docs
|
|
||||||
|
|
||||||
clean-manpages:
|
|
||||||
rm -f $(man1_pages_to_install) \
|
|
||||||
$(man5_pages_to_install) \
|
|
||||||
$(html_man_pages)
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Install targets
|
|
||||||
install-data-local:
|
|
||||||
mkdir -p $(DESTDIR)$(mandir)/man1
|
|
||||||
mkdir -p $(DESTDIR)$(mandir)/man5
|
|
||||||
for f in $(man1_pages_to_install) ; do if test -f $$f ; then cp -v $$f $(DESTDIR)$(mandir)/man1/; fi ; done
|
|
||||||
for f in $(man5_pages_to_install) ; do if test -f $$f ; then cp -v $$f $(DESTDIR)$(mandir)/man5/; fi ; done
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Uninstall targets
|
|
||||||
uninstall-local:
|
|
||||||
for f in $(man1_pages_to_install) ; do if test -f $$f ; then rm -vf $(DESTDIR)$(mandir)/man1/$$f ; fi ; done
|
|
||||||
for f in $(man5_pages_to_install) ; do if test -f $$f ; then rm -vf $(DESTDIR)$(mandir)/man5/$$f ; fi ; done
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
|
@ -1,435 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# Documentation/programmers_guide/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/Documentation/programmers_guide/Makefile.am
|
|
||||||
# Description: Ecasound documentation - programmer's guide
|
|
||||||
# License: GPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ../..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ../..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
subdir = Documentation/programmers_guide
|
|
||||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
SOURCES =
|
|
||||||
DIST_SOURCES =
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Files going into distribution:
|
|
||||||
EXTRA_DIST = ecasound_programmers_guide.txt \
|
|
||||||
eci_doc.latex
|
|
||||||
|
|
||||||
DISTCLEANFILES = \
|
|
||||||
ecasound_programmers_guide.html \
|
|
||||||
eci_doc.log \
|
|
||||||
eci_doc.aux \
|
|
||||||
eci_doc.toc \
|
|
||||||
eci_doc.dvi \
|
|
||||||
eci_doc.ps \
|
|
||||||
ecasound_eci_doc.pdf \
|
|
||||||
html_ecidoc/eci_doc.html \
|
|
||||||
html_ecidoc/eci_doc.haux \
|
|
||||||
html_ecidoc/eci_doc.htoc
|
|
||||||
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Documentation/programmers_guide/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign Documentation/programmers_guide/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
tags: TAGS
|
|
||||||
TAGS:
|
|
||||||
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS:
|
|
||||||
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile
|
|
||||||
installdirs:
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-generic distclean-libtool
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am:
|
|
||||||
|
|
||||||
install-exec-am:
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am
|
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
|
||||||
distclean distclean-generic distclean-libtool distdir dvi \
|
|
||||||
dvi-am html html-am info info-am install install-am \
|
|
||||||
install-data install-data-am install-exec install-exec-am \
|
|
||||||
install-info install-info-am install-man install-strip \
|
|
||||||
installcheck installcheck-am installdirs maintainer-clean \
|
|
||||||
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
|
||||||
mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
|
|
||||||
uninstall-info-am
|
|
||||||
|
|
||||||
|
|
||||||
all:
|
|
||||||
|
|
||||||
docs: ecasound_programmers_guide.html ecasound_eci_doc.pdf
|
|
||||||
|
|
||||||
ecasound_programmers_guide.html: $(srcdir)/ecasound_programmers_guide.txt
|
|
||||||
rst2html $(srcdir)/ecasound_programmers_guide.txt ecasound_programmers_guide.html
|
|
||||||
|
|
||||||
# note: to create the table of contents (which spans multiple pages), and
|
|
||||||
# re-calculate the page numbers after the page offset generated by table
|
|
||||||
# of contents, latex needs to be ran 3 times. (Junichi Uekawa, 2007-08-06)
|
|
||||||
|
|
||||||
ecasound_eci_doc.pdf: $(srcdir)/eci_doc.latex eci_doc.dvi
|
|
||||||
latex $(srcdir)/eci_doc.latex
|
|
||||||
latex $(srcdir)/eci_doc.latex
|
|
||||||
latex $(srcdir)/eci_doc.latex
|
|
||||||
dvips -Ppdf -o eci_doc.ps eci_doc.dvi
|
|
||||||
ps2pdf eci_doc.ps ecasound_eci_doc.pdf
|
|
||||||
mkdir -p html_ecidoc
|
|
||||||
hevea -o html_ecidoc/eci_doc.html $(srcdir)/eci_doc.latex
|
|
||||||
hevea -o html_ecidoc/eci_doc.html $(srcdir)/eci_doc.latex
|
|
||||||
|
|
||||||
eci_doc.dvi: $(srcdir)/eci_doc.latex
|
|
||||||
|
|
||||||
clean-docs:
|
|
||||||
rm -fv ecasound_programmers_guide.html ecasound_eci_doc.pdf
|
|
||||||
rm -fv eci_doc.log eci_doc.toc eci_doc.dvi eci_doc.aux eci_doc.ps eci_doc.dvi
|
|
||||||
rm -fv html_ecidoc/*
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
|
@ -1,432 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# Documentation/users_guide/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/Documentation/users_guide/Makefile.am
|
|
||||||
# Description: Ecasound documentation - user's guide
|
|
||||||
# License: GPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Files going into distribution:
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ../..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ../..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
subdir = Documentation/users_guide
|
|
||||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
SOURCES =
|
|
||||||
DIST_SOURCES =
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
EXTRA_DIST = users_guide.latex
|
|
||||||
DISTCLEANFILES = \
|
|
||||||
users_guide.log \
|
|
||||||
users_guide.aux \
|
|
||||||
users_guide.out \
|
|
||||||
users_guide.dvi \
|
|
||||||
users_guide.toc \
|
|
||||||
users_guide.ps \
|
|
||||||
ecasound_users_guide.pdf \
|
|
||||||
html_uguide/users_guide.html \
|
|
||||||
html_uguide/users_guide.haux \
|
|
||||||
html_uguide/users_guide.htoc
|
|
||||||
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Documentation/users_guide/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign Documentation/users_guide/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
tags: TAGS
|
|
||||||
TAGS:
|
|
||||||
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS:
|
|
||||||
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile
|
|
||||||
installdirs:
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-generic distclean-libtool
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am:
|
|
||||||
|
|
||||||
install-exec-am:
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am
|
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
|
||||||
distclean distclean-generic distclean-libtool distdir dvi \
|
|
||||||
dvi-am html html-am info info-am install install-am \
|
|
||||||
install-data install-data-am install-exec install-exec-am \
|
|
||||||
install-info install-info-am install-man install-strip \
|
|
||||||
installcheck installcheck-am installdirs maintainer-clean \
|
|
||||||
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
|
||||||
mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
|
|
||||||
uninstall-info-am
|
|
||||||
|
|
||||||
|
|
||||||
all:
|
|
||||||
|
|
||||||
docs: ecasound_users_guide.pdf
|
|
||||||
|
|
||||||
ecasound_eci_doc.pdf: eci_doc.latex eci_doc.dvi
|
|
||||||
|
|
||||||
# note: to create the table of contents (which spans multiple pages), and
|
|
||||||
# re-calculate the page numbers after the page offset generated by table
|
|
||||||
# of contents, latex needs to be ran 3 times. (Junichi Uekawa, 2007-08-06)
|
|
||||||
|
|
||||||
users_guide.dvi: $(srcdir)/users_guide.latex
|
|
||||||
latex $(srcdir)/users_guide.latex
|
|
||||||
latex $(srcdir)/users_guide.latex
|
|
||||||
latex $(srcdir)/users_guide.latex
|
|
||||||
dvips -Ppdf -o users_guide.ps users_guide.dvi
|
|
||||||
ps2pdf users_guide.ps ecasound_users_guide.pdf
|
|
||||||
mkdir -p html_uguide
|
|
||||||
hevea -o html_uguide/users_guide.html $(srcdir)/users_guide.latex
|
|
||||||
hevea -o html_uguide/users_guide.html $(srcdir)/users_guide.latex
|
|
||||||
|
|
||||||
ecasound_users_guide.pdf: users_guide.dvi
|
|
||||||
|
|
||||||
clean-docs:
|
|
||||||
rm -fv ecasound_users_guide.pdf
|
|
||||||
rm -fv users_guide.log users_guide.toc users_guide.dvi users_guide.aux users_guide.ps users_guide.dvi
|
|
||||||
rm -fv html_uguide/*
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
|
@ -1,726 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/Makefile.am
|
|
||||||
# Description: Ecasound multitrack audio processing tool
|
|
||||||
# License: GPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = .
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = .
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
|
|
||||||
$(srcdir)/Makefile.in $(srcdir)/config.h.in \
|
|
||||||
$(srcdir)/ecasound.spec.in $(top_srcdir)/configure AUTHORS \
|
|
||||||
COPYING INSTALL NEWS TODO compile config.guess config.sub \
|
|
||||||
depcomp install-sh ltmain.sh missing
|
|
||||||
subdir = .
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
|
||||||
configure.lineno configure.status.lineno
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = config.h
|
|
||||||
CONFIG_CLEAN_FILES = ecasound.spec
|
|
||||||
SOURCES =
|
|
||||||
DIST_SOURCES =
|
|
||||||
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
|
||||||
html-recursive info-recursive install-data-recursive \
|
|
||||||
install-exec-recursive install-info-recursive \
|
|
||||||
install-recursive installcheck-recursive installdirs-recursive \
|
|
||||||
pdf-recursive ps-recursive uninstall-info-recursive \
|
|
||||||
uninstall-recursive
|
|
||||||
ETAGS = etags
|
|
||||||
CTAGS = ctags
|
|
||||||
DIST_SUBDIRS = $(SUBDIRS)
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
distdir = $(PACKAGE)-$(VERSION)
|
|
||||||
top_distdir = $(distdir)
|
|
||||||
am__remove_distdir = \
|
|
||||||
{ test ! -d $(distdir) \
|
|
||||||
|| { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
|
|
||||||
&& rm -fr $(distdir); }; }
|
|
||||||
DIST_ARCHIVES = $(distdir).tar.gz
|
|
||||||
GZIP_ENV = --best
|
|
||||||
distuninstallcheck_listfiles = find . -type f -print
|
|
||||||
distcleancheck_listfiles = find . -type f -print
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
EXTRA_DIST = AUTHORS BUGS COPYING.GPL COPYING.LGPL NEWS TODO ecasoundrc.in ecasound.spec effect_presets generic_oscillators
|
|
||||||
SUBDIRS = kvutils libecasound ecasound libecasoundc pyecasound rubyecasound ecatools Documentation examples
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
|
||||||
RELEASE = 1
|
|
||||||
all: config.h
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
am--refresh:
|
|
||||||
@:
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
|
|
||||||
cd $(srcdir) && $(AUTOMAKE) --foreign \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
echo ' $(SHELL) ./config.status'; \
|
|
||||||
$(SHELL) ./config.status;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
$(SHELL) ./config.status --recheck
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(srcdir) && $(AUTOCONF)
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
|
||||||
|
|
||||||
config.h: stamp-h1
|
|
||||||
@if test ! -f $@; then \
|
|
||||||
rm -f stamp-h1; \
|
|
||||||
$(MAKE) stamp-h1; \
|
|
||||||
else :; fi
|
|
||||||
|
|
||||||
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
|
||||||
@rm -f stamp-h1
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
|
||||||
$(srcdir)/config.h.in: $(am__configure_deps)
|
|
||||||
cd $(top_srcdir) && $(AUTOHEADER)
|
|
||||||
rm -f stamp-h1
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
distclean-hdr:
|
|
||||||
-rm -f config.h stamp-h1
|
|
||||||
ecasound.spec: $(top_builddir)/config.status $(srcdir)/ecasound.spec.in
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
|
|
||||||
# This directory's subdirectories are mostly independent; you can cd
|
|
||||||
# into them and run `make' without going through this Makefile.
|
|
||||||
# To change the values of `make' variables: instead of editing Makefiles,
|
|
||||||
# (1) if the variable is set in `config.status', edit `config.status'
|
|
||||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
|
||||||
# (2) otherwise, pass the desired values on the `make' command line.
|
|
||||||
$(RECURSIVE_TARGETS):
|
|
||||||
@failcom='exit 1'; \
|
|
||||||
for f in x $$MAKEFLAGS; do \
|
|
||||||
case $$f in \
|
|
||||||
*=* | --[!k]*);; \
|
|
||||||
*k*) failcom='fail=yes';; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
dot_seen=no; \
|
|
||||||
target=`echo $@ | sed s/-recursive//`; \
|
|
||||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
||||||
echo "Making $$target in $$subdir"; \
|
|
||||||
if test "$$subdir" = "."; then \
|
|
||||||
dot_seen=yes; \
|
|
||||||
local_target="$$target-am"; \
|
|
||||||
else \
|
|
||||||
local_target="$$target"; \
|
|
||||||
fi; \
|
|
||||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
||||||
|| eval $$failcom; \
|
|
||||||
done; \
|
|
||||||
if test "$$dot_seen" = "no"; then \
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
|
||||||
fi; test -z "$$fail"
|
|
||||||
|
|
||||||
mostlyclean-recursive clean-recursive distclean-recursive \
|
|
||||||
maintainer-clean-recursive:
|
|
||||||
@failcom='exit 1'; \
|
|
||||||
for f in x $$MAKEFLAGS; do \
|
|
||||||
case $$f in \
|
|
||||||
*=* | --[!k]*);; \
|
|
||||||
*k*) failcom='fail=yes';; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
dot_seen=no; \
|
|
||||||
case "$@" in \
|
|
||||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
|
||||||
*) list='$(SUBDIRS)' ;; \
|
|
||||||
esac; \
|
|
||||||
rev=''; for subdir in $$list; do \
|
|
||||||
if test "$$subdir" = "."; then :; else \
|
|
||||||
rev="$$subdir $$rev"; \
|
|
||||||
fi; \
|
|
||||||
done; \
|
|
||||||
rev="$$rev ."; \
|
|
||||||
target=`echo $@ | sed s/-recursive//`; \
|
|
||||||
for subdir in $$rev; do \
|
|
||||||
echo "Making $$target in $$subdir"; \
|
|
||||||
if test "$$subdir" = "."; then \
|
|
||||||
local_target="$$target-am"; \
|
|
||||||
else \
|
|
||||||
local_target="$$target"; \
|
|
||||||
fi; \
|
|
||||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
||||||
|| eval $$failcom; \
|
|
||||||
done && test -z "$$fail"
|
|
||||||
tags-recursive:
|
|
||||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
||||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
|
||||||
done
|
|
||||||
ctags-recursive:
|
|
||||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
||||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
|
||||||
done
|
|
||||||
|
|
||||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
mkid -fID $$unique
|
|
||||||
tags: TAGS
|
|
||||||
|
|
||||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
|
||||||
include_option=--etags-include; \
|
|
||||||
empty_fix=.; \
|
|
||||||
else \
|
|
||||||
include_option=--include; \
|
|
||||||
empty_fix=; \
|
|
||||||
fi; \
|
|
||||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
||||||
if test "$$subdir" = .; then :; else \
|
|
||||||
test ! -f $$subdir/TAGS || \
|
|
||||||
tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
|
|
||||||
fi; \
|
|
||||||
done; \
|
|
||||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
|
||||||
test -n "$$unique" || unique=$$empty_fix; \
|
|
||||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
||||||
$$tags $$unique; \
|
|
||||||
fi
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
|
||||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
||||||
$$tags $$unique
|
|
||||||
|
|
||||||
GTAGS:
|
|
||||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
||||||
&& cd $(top_srcdir) \
|
|
||||||
&& gtags -i $(GTAGS_ARGS) $$here
|
|
||||||
|
|
||||||
distclean-tags:
|
|
||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
$(am__remove_distdir)
|
|
||||||
mkdir $(distdir)
|
|
||||||
$(mkdir_p) $(distdir)/. $(distdir)/libecasound $(distdir)/libecasoundc
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
|
||||||
if test "$$subdir" = .; then :; else \
|
|
||||||
test -d "$(distdir)/$$subdir" \
|
|
||||||
|| $(mkdir_p) "$(distdir)/$$subdir" \
|
|
||||||
|| exit 1; \
|
|
||||||
distdir=`$(am__cd) $(distdir) && pwd`; \
|
|
||||||
top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
|
|
||||||
(cd $$subdir && \
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) \
|
|
||||||
top_distdir="$$top_distdir" \
|
|
||||||
distdir="$$distdir/$$subdir" \
|
|
||||||
distdir) \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) \
|
|
||||||
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
|
||||||
dist-hook
|
|
||||||
-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
|
||||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
|
||||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
|
||||||
! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
|
|
||||||
|| chmod -R a+r $(distdir)
|
|
||||||
dist-gzip: distdir
|
|
||||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
|
||||||
$(am__remove_distdir)
|
|
||||||
|
|
||||||
dist-bzip2: distdir
|
|
||||||
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
|
||||||
$(am__remove_distdir)
|
|
||||||
|
|
||||||
dist-tarZ: distdir
|
|
||||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
|
||||||
$(am__remove_distdir)
|
|
||||||
|
|
||||||
dist-shar: distdir
|
|
||||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
|
||||||
$(am__remove_distdir)
|
|
||||||
|
|
||||||
dist-zip: distdir
|
|
||||||
-rm -f $(distdir).zip
|
|
||||||
zip -rq $(distdir).zip $(distdir)
|
|
||||||
$(am__remove_distdir)
|
|
||||||
|
|
||||||
dist dist-all: distdir
|
|
||||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
|
||||||
$(am__remove_distdir)
|
|
||||||
|
|
||||||
# This target untars the dist file and tries a VPATH configuration. Then
|
|
||||||
# it guarantees that the distribution is self-contained by making another
|
|
||||||
# tarfile.
|
|
||||||
distcheck: dist
|
|
||||||
case '$(DIST_ARCHIVES)' in \
|
|
||||||
*.tar.gz*) \
|
|
||||||
GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
|
|
||||||
*.tar.bz2*) \
|
|
||||||
bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
|
|
||||||
*.tar.Z*) \
|
|
||||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
|
||||||
*.shar.gz*) \
|
|
||||||
GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
|
|
||||||
*.zip*) \
|
|
||||||
unzip $(distdir).zip ;;\
|
|
||||||
esac
|
|
||||||
chmod -R a-w $(distdir); chmod a+w $(distdir)
|
|
||||||
mkdir $(distdir)/_build
|
|
||||||
mkdir $(distdir)/_inst
|
|
||||||
chmod a-w $(distdir)
|
|
||||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
|
||||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
|
||||||
&& cd $(distdir)/_build \
|
|
||||||
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
|
||||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
|
||||||
distuninstallcheck \
|
|
||||||
&& chmod -R a-w "$$dc_install_base" \
|
|
||||||
&& ({ \
|
|
||||||
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
|
||||||
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
|
||||||
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
|
||||||
&& rm -rf "$$dc_destdir" \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
|
||||||
&& rm -rf $(DIST_ARCHIVES) \
|
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck
|
|
||||||
$(am__remove_distdir)
|
|
||||||
@(echo "$(distdir) archives ready for distribution: "; \
|
|
||||||
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
|
||||||
sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
|
|
||||||
distuninstallcheck:
|
|
||||||
@cd $(distuninstallcheck_dir) \
|
|
||||||
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
|
||||||
|| { echo "ERROR: files left after uninstall:" ; \
|
|
||||||
if test -n "$(DESTDIR)"; then \
|
|
||||||
echo " (check DESTDIR support)"; \
|
|
||||||
fi ; \
|
|
||||||
$(distuninstallcheck_listfiles) ; \
|
|
||||||
exit 1; } >&2
|
|
||||||
distcleancheck: distclean
|
|
||||||
@if test '$(srcdir)' = . ; then \
|
|
||||||
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
|
||||||
exit 1 ; \
|
|
||||||
fi
|
|
||||||
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
|
||||||
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
|
||||||
$(distcleancheck_listfiles) ; \
|
|
||||||
exit 1; } >&2
|
|
||||||
check-am: all-am
|
|
||||||
check: check-recursive
|
|
||||||
all-am: Makefile config.h
|
|
||||||
installdirs: installdirs-recursive
|
|
||||||
installdirs-am:
|
|
||||||
install: install-recursive
|
|
||||||
install-exec: install-exec-recursive
|
|
||||||
install-data: install-data-recursive
|
|
||||||
uninstall: uninstall-recursive
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-recursive
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-recursive
|
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool clean-local mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-recursive
|
|
||||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-generic distclean-hdr \
|
|
||||||
distclean-libtool distclean-tags
|
|
||||||
|
|
||||||
dvi: dvi-recursive
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-recursive
|
|
||||||
|
|
||||||
info: info-recursive
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am: install-data-local
|
|
||||||
|
|
||||||
install-exec-am:
|
|
||||||
|
|
||||||
install-info: install-info-recursive
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-recursive
|
|
||||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
|
||||||
-rm -rf $(top_srcdir)/autom4te.cache
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-recursive
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-recursive
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-recursive
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am uninstall-local
|
|
||||||
|
|
||||||
uninstall-info: uninstall-info-recursive
|
|
||||||
|
|
||||||
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \
|
|
||||||
check-am clean clean-generic clean-libtool clean-local \
|
|
||||||
clean-recursive ctags ctags-recursive dist dist-all dist-bzip2 \
|
|
||||||
dist-gzip dist-hook dist-shar dist-tarZ dist-zip distcheck \
|
|
||||||
distclean distclean-generic distclean-hdr distclean-libtool \
|
|
||||||
distclean-recursive distclean-tags distcleancheck distdir \
|
|
||||||
distuninstallcheck dvi dvi-am html html-am info info-am \
|
|
||||||
install install-am install-data install-data-am \
|
|
||||||
install-data-local install-exec install-exec-am install-info \
|
|
||||||
install-info-am install-man install-strip installcheck \
|
|
||||||
installcheck-am installdirs installdirs-am maintainer-clean \
|
|
||||||
maintainer-clean-generic maintainer-clean-recursive \
|
|
||||||
mostlyclean mostlyclean-generic mostlyclean-libtool \
|
|
||||||
mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \
|
|
||||||
uninstall uninstall-am uninstall-info-am uninstall-local
|
|
||||||
|
|
||||||
|
|
||||||
docs:
|
|
||||||
cd Documentation ; $(MAKE) $(AM_MAKEFLAGS) docs
|
|
||||||
|
|
||||||
install-data-local: ecasoundrc
|
|
||||||
$(INSTALL) -d $(DESTDIR)$(pkgdatadir)
|
|
||||||
$(INSTALL_DATA) $(top_builddir)/ecasoundrc $(DESTDIR)$(pkgdatadir)/ecasoundrc
|
|
||||||
$(INSTALL_DATA) $(top_srcdir)/effect_presets $(DESTDIR)$(pkgdatadir)/effect_presets
|
|
||||||
$(INSTALL_DATA) $(top_srcdir)/ecatools/ecasound.el $(DESTDIR)$(pkgdatadir)/ecasound.el
|
|
||||||
$(INSTALL_DATA) $(top_srcdir)/generic_oscillators $(DESTDIR)$(pkgdatadir)/generic_oscillators
|
|
||||||
|
|
||||||
uninstall-local:
|
|
||||||
rm -f $(DESTDIR)$(pkgdatadir)/effect_presets \
|
|
||||||
$(DESTDIR)$(pkgdatadir)/ecasound.el \
|
|
||||||
$(DESTDIR)$(pkgdatadir)/generic_oscillators \
|
|
||||||
$(DESTDIR)$(pkgdatadir)/ecasoundrc
|
|
||||||
rmdir $(DESTDIR)$(pkgdatadir) || echo "Skipping non-empty directory"
|
|
||||||
|
|
||||||
ecasoundrc: ecasoundrc.in Makefile.am
|
|
||||||
sed -e "s%[@]VERSION[@]%$(VERSION)%" \
|
|
||||||
-e "s%[@]prefix[@]%$(prefix)%" \
|
|
||||||
-e "s%[@]pkgdatadir[@]%$(pkgdatadir)%" \
|
|
||||||
< $(top_srcdir)/ecasoundrc.in > ecasoundrc
|
|
||||||
|
|
||||||
clean-local:
|
|
||||||
rm -fv ecasoundrc
|
|
||||||
|
|
||||||
dist-hook: docs
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,68 +0,0 @@
|
||||||
# This file was generated by Autom4te Tue Dec 22 07:01:21 UTC 2009.
|
|
||||||
# It contains the lists of macros which have been traced.
|
|
||||||
# It can be safely removed.
|
|
||||||
|
|
||||||
@request = (
|
|
||||||
bless( [
|
|
||||||
'0',
|
|
||||||
1,
|
|
||||||
[
|
|
||||||
'/usr/share/autoconf'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'/usr/share/autoconf/autoconf/autoconf.m4f',
|
|
||||||
'aclocal.m4',
|
|
||||||
'configure.in'
|
|
||||||
],
|
|
||||||
{
|
|
||||||
'AM_PROG_F77_C_O' => 1,
|
|
||||||
'_LT_AC_TAGCONFIG' => 1,
|
|
||||||
'm4_pattern_forbid' => 1,
|
|
||||||
'AC_INIT' => 1,
|
|
||||||
'AC_CANONICAL_TARGET' => 1,
|
|
||||||
'_AM_COND_IF' => 1,
|
|
||||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
|
||||||
'AC_SUBST' => 1,
|
|
||||||
'AC_CANONICAL_HOST' => 1,
|
|
||||||
'AC_FC_SRCEXT' => 1,
|
|
||||||
'AC_PROG_LIBTOOL' => 1,
|
|
||||||
'AM_INIT_AUTOMAKE' => 1,
|
|
||||||
'AC_CONFIG_SUBDIRS' => 1,
|
|
||||||
'AM_AUTOMAKE_VERSION' => 1,
|
|
||||||
'LT_CONFIG_LTDL_DIR' => 1,
|
|
||||||
'AC_CONFIG_LINKS' => 1,
|
|
||||||
'AC_REQUIRE_AUX_FILE' => 1,
|
|
||||||
'LT_SUPPORTED_TAG' => 1,
|
|
||||||
'm4_sinclude' => 1,
|
|
||||||
'AM_MAINTAINER_MODE' => 1,
|
|
||||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
|
||||||
'_m4_warn' => 1,
|
|
||||||
'AM_PROG_CXX_C_O' => 1,
|
|
||||||
'_AM_COND_ENDIF' => 1,
|
|
||||||
'AM_ENABLE_MULTILIB' => 1,
|
|
||||||
'AM_SILENT_RULES' => 1,
|
|
||||||
'AC_CONFIG_FILES' => 1,
|
|
||||||
'include' => 1,
|
|
||||||
'LT_INIT' => 1,
|
|
||||||
'AM_GNU_GETTEXT' => 1,
|
|
||||||
'AC_LIBSOURCE' => 1,
|
|
||||||
'AC_CANONICAL_BUILD' => 1,
|
|
||||||
'AM_PROG_FC_C_O' => 1,
|
|
||||||
'AC_FC_FREEFORM' => 1,
|
|
||||||
'AH_OUTPUT' => 1,
|
|
||||||
'AC_CONFIG_AUX_DIR' => 1,
|
|
||||||
'_AM_SUBST_NOTMAKE' => 1,
|
|
||||||
'AM_PROG_CC_C_O' => 1,
|
|
||||||
'm4_pattern_allow' => 1,
|
|
||||||
'sinclude' => 1,
|
|
||||||
'AM_CONDITIONAL' => 1,
|
|
||||||
'AC_CANONICAL_SYSTEM' => 1,
|
|
||||||
'AC_CONFIG_HEADERS' => 1,
|
|
||||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
|
||||||
'm4_include' => 1,
|
|
||||||
'_AM_COND_ELSE' => 1,
|
|
||||||
'AC_SUBST_TRACE' => 1
|
|
||||||
}
|
|
||||||
], 'Autom4te::Request' )
|
|
||||||
);
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,270 +0,0 @@
|
||||||
/* config.h. Generated from config.h.in by configure. */
|
|
||||||
/* config.h.in. Generated from configure.in by autoheader. */
|
|
||||||
|
|
||||||
/* disable all use of shared libs */
|
|
||||||
/* #undef ECA_ALL_STATIC */
|
|
||||||
|
|
||||||
/* enable ALSA support */
|
|
||||||
#define ECA_COMPILE_ALSA 1
|
|
||||||
|
|
||||||
/* enable aRts support */
|
|
||||||
/* #undef ECA_COMPILE_ARTS */
|
|
||||||
|
|
||||||
/* enable libaudiofile support */
|
|
||||||
#define ECA_COMPILE_AUDIOFILE 1
|
|
||||||
|
|
||||||
/* enable JACK support */
|
|
||||||
/* #undef ECA_COMPILE_JACK */
|
|
||||||
|
|
||||||
/* enable OSS audio input/output */
|
|
||||||
#define ECA_COMPILE_OSS 1
|
|
||||||
|
|
||||||
/* enable libsamplerate support */
|
|
||||||
#define ECA_COMPILE_SAMPLERATE 1
|
|
||||||
|
|
||||||
/* enable libsndfile support */
|
|
||||||
#define ECA_COMPILE_SNDFILE 1
|
|
||||||
|
|
||||||
/* debugging mode build */
|
|
||||||
/* #undef ECA_DEBUG_MODE */
|
|
||||||
|
|
||||||
/* disable all effects */
|
|
||||||
/* #undef ECA_DISABLE_EFFECTS */
|
|
||||||
|
|
||||||
/* disable use of OSS trigger API */
|
|
||||||
/* #undef ECA_DISABLE_OSS_TRIGGER */
|
|
||||||
|
|
||||||
/* enable experimental features */
|
|
||||||
/* #undef ECA_FEELING_EXPERIMENTAL */
|
|
||||||
|
|
||||||
/* version of JACK transport API to use */
|
|
||||||
#define ECA_JACK_TRANSPORT_API 2
|
|
||||||
|
|
||||||
/* enable ecasound curses console interface */
|
|
||||||
#define ECA_PLATFORM_CURSES 1
|
|
||||||
|
|
||||||
/* Ecasound configure script prefix */
|
|
||||||
#define ECA_PREFIX "/usr/local"
|
|
||||||
|
|
||||||
/* use ncurses.h for curses interface */
|
|
||||||
/* #undef ECA_USE_CURSES_H */
|
|
||||||
|
|
||||||
/* use C++ std namespace */
|
|
||||||
#define ECA_USE_CXX_STD_NAMESPACE 1
|
|
||||||
|
|
||||||
/* Use liblo for OSC support */
|
|
||||||
/* #undef ECA_USE_LIBLO */
|
|
||||||
|
|
||||||
/* Use liboil */
|
|
||||||
/* #undef ECA_USE_LIBOIL */
|
|
||||||
|
|
||||||
/* use curses.h for curses interface */
|
|
||||||
#define ECA_USE_NCURSES_H 1
|
|
||||||
|
|
||||||
/* ncurses headers are installed in ncurses subdir <ncurses/ncurses.h> */
|
|
||||||
/* #undef ECA_USE_NCURSES_NCURSES_H */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `clock_gettime' function. */
|
|
||||||
#define HAVE_CLOCK_GETTIME 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
||||||
#define HAVE_DLFCN_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <errno.h> header file. */
|
|
||||||
#define HAVE_ERRNO_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <execinfo.h> header file. */
|
|
||||||
#define HAVE_EXECINFO_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `execvp' function. */
|
|
||||||
#define HAVE_EXECVP 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <fcntl.h> header file. */
|
|
||||||
#define HAVE_FCNTL_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <features.h> header file. */
|
|
||||||
#define HAVE_FEATURES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
|
||||||
#define HAVE_GETPAGESIZE 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `gettimeofday' function. */
|
|
||||||
#define HAVE_GETTIMEOFDAY 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
||||||
#define HAVE_INTTYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <ladspa.h> header file. */
|
|
||||||
/* #undef HAVE_LADSPA_H */
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <locale.h> header file. */
|
|
||||||
#define HAVE_LOCALE_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <memory.h> header file. */
|
|
||||||
#define HAVE_MEMORY_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `mlockall' function. */
|
|
||||||
#define HAVE_MLOCKALL 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have a working `mmap' system call. */
|
|
||||||
#define HAVE_MMAP 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `munlockall' function. */
|
|
||||||
#define HAVE_MUNLOCKALL 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `nanosleep' function. */
|
|
||||||
#define HAVE_NANOSLEEP 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pause' function. */
|
|
||||||
#define HAVE_PAUSE 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `posix_memalign' function. */
|
|
||||||
#define HAVE_POSIX_MEMALIGN 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_getschedparam' function. */
|
|
||||||
#define HAVE_PTHREAD_GETSCHEDPARAM 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_kill' function. */
|
|
||||||
#define HAVE_PTHREAD_KILL 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_mutexattr_init' function. */
|
|
||||||
#define HAVE_PTHREAD_MUTEXATTR_INIT 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_self' function. */
|
|
||||||
#define HAVE_PTHREAD_SELF 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_setschedparam' function. */
|
|
||||||
#define HAVE_PTHREAD_SETSCHEDPARAM 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_sigmask' function. */
|
|
||||||
#define HAVE_PTHREAD_SIGMASK 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <regex.h> header file. */
|
|
||||||
#define HAVE_REGEX_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sched_getparam' function. */
|
|
||||||
#define HAVE_SCHED_GETPARAM 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sched_getscheduler' function. */
|
|
||||||
#define HAVE_SCHED_GETSCHEDULER 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sched_get_priority_max' function. */
|
|
||||||
#define HAVE_SCHED_GET_PRIORITY_MAX 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sched.h> header file. */
|
|
||||||
#define HAVE_SCHED_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sched_setscheduler' function. */
|
|
||||||
#define HAVE_SCHED_SETSCHEDULER 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `setlocale' function. */
|
|
||||||
#define HAVE_SETLOCALE 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <signal.h> header file. */
|
|
||||||
#define HAVE_SIGNAL_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sigprocmask' function. */
|
|
||||||
#define HAVE_SIGPROCMASK 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sigwait' function. */
|
|
||||||
#define HAVE_SIGWAIT 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
|
||||||
#define HAVE_STDINT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
||||||
#define HAVE_STDLIB_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <strings.h> header file. */
|
|
||||||
#define HAVE_STRINGS_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <string.h> header file. */
|
|
||||||
#define HAVE_STRING_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/mman.h> header file. */
|
|
||||||
#define HAVE_SYS_MMAN_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/poll.h> header file. */
|
|
||||||
#define HAVE_SYS_POLL_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/select.h> header file. */
|
|
||||||
#define HAVE_SYS_SELECT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/socket.h> header file. */
|
|
||||||
#define HAVE_SYS_SOCKET_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
||||||
#define HAVE_SYS_STAT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/time.h> header file. */
|
|
||||||
#define HAVE_SYS_TIME_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
||||||
#define HAVE_SYS_TYPES_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/wait.h> header file. */
|
|
||||||
#define HAVE_SYS_WAIT_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <termios.h> header file. */
|
|
||||||
#define HAVE_TERMIOS_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
|
||||||
#define HAVE_UNISTD_H 1
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `usleep' function. */
|
|
||||||
#define HAVE_USLEEP 1
|
|
||||||
|
|
||||||
/* libecasoundc interface version */
|
|
||||||
#define LIBECASOUNDC_VERSION 2
|
|
||||||
|
|
||||||
/* libecasound interface version */
|
|
||||||
#define LIBECASOUND_VERSION 22
|
|
||||||
|
|
||||||
/* libecasound interface age */
|
|
||||||
#define LIBECASOUND_VERSION_AGE 0
|
|
||||||
|
|
||||||
/* libkvutils interface version */
|
|
||||||
#define LIBKVUTILS_VERSION 9
|
|
||||||
|
|
||||||
/* libkvutils interface age */
|
|
||||||
#define LIBKVUTILS_VERSION_AGE 5
|
|
||||||
|
|
||||||
/* Name of package */
|
|
||||||
#define PACKAGE "ecasound"
|
|
||||||
|
|
||||||
/* Define to the address where bug reports for this package should be sent. */
|
|
||||||
#define PACKAGE_BUGREPORT ""
|
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
|
||||||
#define PACKAGE_NAME "ecasound"
|
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
|
||||||
#define PACKAGE_STRING "ecasound 2.7.2"
|
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
|
||||||
#define PACKAGE_TARNAME "ecasound"
|
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
|
||||||
#define PACKAGE_VERSION "2.7.2"
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
|
||||||
#define STDC_HEADERS 1
|
|
||||||
|
|
||||||
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
|
|
||||||
#define TIME_WITH_SYS_TIME 1
|
|
||||||
|
|
||||||
/* Version number of package */
|
|
||||||
#define VERSION "2.7.2"
|
|
||||||
|
|
||||||
/* Define to 1 if your processor stores words with the most significant byte
|
|
||||||
first (like Motorola and SPARC, unlike Intel and VAX). */
|
|
||||||
/* #undef WORDS_BIGENDIAN */
|
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
|
||||||
|
|
||||||
/* Define for large files, on AIX-style hosts. */
|
|
||||||
/* #undef _LARGE_FILES */
|
|
||||||
|
|
||||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
|
||||||
/* #undef size_t */
|
|
|
@ -1,269 +0,0 @@
|
||||||
/* config.h.in. Generated from configure.in by autoheader. */
|
|
||||||
|
|
||||||
/* disable all use of shared libs */
|
|
||||||
#undef ECA_ALL_STATIC
|
|
||||||
|
|
||||||
/* enable ALSA support */
|
|
||||||
#undef ECA_COMPILE_ALSA
|
|
||||||
|
|
||||||
/* enable aRts support */
|
|
||||||
#undef ECA_COMPILE_ARTS
|
|
||||||
|
|
||||||
/* enable libaudiofile support */
|
|
||||||
#undef ECA_COMPILE_AUDIOFILE
|
|
||||||
|
|
||||||
/* enable JACK support */
|
|
||||||
#undef ECA_COMPILE_JACK
|
|
||||||
|
|
||||||
/* enable OSS audio input/output */
|
|
||||||
#undef ECA_COMPILE_OSS
|
|
||||||
|
|
||||||
/* enable libsamplerate support */
|
|
||||||
#undef ECA_COMPILE_SAMPLERATE
|
|
||||||
|
|
||||||
/* enable libsndfile support */
|
|
||||||
#undef ECA_COMPILE_SNDFILE
|
|
||||||
|
|
||||||
/* debugging mode build */
|
|
||||||
#undef ECA_DEBUG_MODE
|
|
||||||
|
|
||||||
/* disable all effects */
|
|
||||||
#undef ECA_DISABLE_EFFECTS
|
|
||||||
|
|
||||||
/* disable use of OSS trigger API */
|
|
||||||
#undef ECA_DISABLE_OSS_TRIGGER
|
|
||||||
|
|
||||||
/* enable experimental features */
|
|
||||||
#undef ECA_FEELING_EXPERIMENTAL
|
|
||||||
|
|
||||||
/* version of JACK transport API to use */
|
|
||||||
#undef ECA_JACK_TRANSPORT_API
|
|
||||||
|
|
||||||
/* enable ecasound curses console interface */
|
|
||||||
#undef ECA_PLATFORM_CURSES
|
|
||||||
|
|
||||||
/* Ecasound configure script prefix */
|
|
||||||
#undef ECA_PREFIX
|
|
||||||
|
|
||||||
/* use ncurses.h for curses interface */
|
|
||||||
#undef ECA_USE_CURSES_H
|
|
||||||
|
|
||||||
/* use C++ std namespace */
|
|
||||||
#undef ECA_USE_CXX_STD_NAMESPACE
|
|
||||||
|
|
||||||
/* Use liblo for OSC support */
|
|
||||||
#undef ECA_USE_LIBLO
|
|
||||||
|
|
||||||
/* Use liboil */
|
|
||||||
#undef ECA_USE_LIBOIL
|
|
||||||
|
|
||||||
/* use curses.h for curses interface */
|
|
||||||
#undef ECA_USE_NCURSES_H
|
|
||||||
|
|
||||||
/* ncurses headers are installed in ncurses subdir <ncurses/ncurses.h> */
|
|
||||||
#undef ECA_USE_NCURSES_NCURSES_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `clock_gettime' function. */
|
|
||||||
#undef HAVE_CLOCK_GETTIME
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
||||||
#undef HAVE_DLFCN_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <errno.h> header file. */
|
|
||||||
#undef HAVE_ERRNO_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <execinfo.h> header file. */
|
|
||||||
#undef HAVE_EXECINFO_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `execvp' function. */
|
|
||||||
#undef HAVE_EXECVP
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <fcntl.h> header file. */
|
|
||||||
#undef HAVE_FCNTL_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <features.h> header file. */
|
|
||||||
#undef HAVE_FEATURES_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
|
||||||
#undef HAVE_GETPAGESIZE
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `gettimeofday' function. */
|
|
||||||
#undef HAVE_GETTIMEOFDAY
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
||||||
#undef HAVE_INTTYPES_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <ladspa.h> header file. */
|
|
||||||
#undef HAVE_LADSPA_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <locale.h> header file. */
|
|
||||||
#undef HAVE_LOCALE_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <memory.h> header file. */
|
|
||||||
#undef HAVE_MEMORY_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `mlockall' function. */
|
|
||||||
#undef HAVE_MLOCKALL
|
|
||||||
|
|
||||||
/* Define to 1 if you have a working `mmap' system call. */
|
|
||||||
#undef HAVE_MMAP
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `munlockall' function. */
|
|
||||||
#undef HAVE_MUNLOCKALL
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `nanosleep' function. */
|
|
||||||
#undef HAVE_NANOSLEEP
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pause' function. */
|
|
||||||
#undef HAVE_PAUSE
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `posix_memalign' function. */
|
|
||||||
#undef HAVE_POSIX_MEMALIGN
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_getschedparam' function. */
|
|
||||||
#undef HAVE_PTHREAD_GETSCHEDPARAM
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_kill' function. */
|
|
||||||
#undef HAVE_PTHREAD_KILL
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_mutexattr_init' function. */
|
|
||||||
#undef HAVE_PTHREAD_MUTEXATTR_INIT
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_self' function. */
|
|
||||||
#undef HAVE_PTHREAD_SELF
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_setschedparam' function. */
|
|
||||||
#undef HAVE_PTHREAD_SETSCHEDPARAM
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `pthread_sigmask' function. */
|
|
||||||
#undef HAVE_PTHREAD_SIGMASK
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <regex.h> header file. */
|
|
||||||
#undef HAVE_REGEX_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sched_getparam' function. */
|
|
||||||
#undef HAVE_SCHED_GETPARAM
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sched_getscheduler' function. */
|
|
||||||
#undef HAVE_SCHED_GETSCHEDULER
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sched_get_priority_max' function. */
|
|
||||||
#undef HAVE_SCHED_GET_PRIORITY_MAX
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sched.h> header file. */
|
|
||||||
#undef HAVE_SCHED_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sched_setscheduler' function. */
|
|
||||||
#undef HAVE_SCHED_SETSCHEDULER
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `setlocale' function. */
|
|
||||||
#undef HAVE_SETLOCALE
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <signal.h> header file. */
|
|
||||||
#undef HAVE_SIGNAL_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sigprocmask' function. */
|
|
||||||
#undef HAVE_SIGPROCMASK
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `sigwait' function. */
|
|
||||||
#undef HAVE_SIGWAIT
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdint.h> header file. */
|
|
||||||
#undef HAVE_STDINT_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
||||||
#undef HAVE_STDLIB_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <strings.h> header file. */
|
|
||||||
#undef HAVE_STRINGS_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <string.h> header file. */
|
|
||||||
#undef HAVE_STRING_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/mman.h> header file. */
|
|
||||||
#undef HAVE_SYS_MMAN_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/poll.h> header file. */
|
|
||||||
#undef HAVE_SYS_POLL_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/select.h> header file. */
|
|
||||||
#undef HAVE_SYS_SELECT_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/socket.h> header file. */
|
|
||||||
#undef HAVE_SYS_SOCKET_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
||||||
#undef HAVE_SYS_STAT_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/time.h> header file. */
|
|
||||||
#undef HAVE_SYS_TIME_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
||||||
#undef HAVE_SYS_TYPES_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/wait.h> header file. */
|
|
||||||
#undef HAVE_SYS_WAIT_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <termios.h> header file. */
|
|
||||||
#undef HAVE_TERMIOS_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
|
||||||
#undef HAVE_UNISTD_H
|
|
||||||
|
|
||||||
/* Define to 1 if you have the `usleep' function. */
|
|
||||||
#undef HAVE_USLEEP
|
|
||||||
|
|
||||||
/* libecasoundc interface version */
|
|
||||||
#undef LIBECASOUNDC_VERSION
|
|
||||||
|
|
||||||
/* libecasound interface version */
|
|
||||||
#undef LIBECASOUND_VERSION
|
|
||||||
|
|
||||||
/* libecasound interface age */
|
|
||||||
#undef LIBECASOUND_VERSION_AGE
|
|
||||||
|
|
||||||
/* libkvutils interface version */
|
|
||||||
#undef LIBKVUTILS_VERSION
|
|
||||||
|
|
||||||
/* libkvutils interface age */
|
|
||||||
#undef LIBKVUTILS_VERSION_AGE
|
|
||||||
|
|
||||||
/* Name of package */
|
|
||||||
#undef PACKAGE
|
|
||||||
|
|
||||||
/* Define to the address where bug reports for this package should be sent. */
|
|
||||||
#undef PACKAGE_BUGREPORT
|
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
|
||||||
#undef PACKAGE_NAME
|
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
|
||||||
#undef PACKAGE_STRING
|
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
|
||||||
#undef PACKAGE_TARNAME
|
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
|
||||||
#undef PACKAGE_VERSION
|
|
||||||
|
|
||||||
/* Define to 1 if you have the ANSI C header files. */
|
|
||||||
#undef STDC_HEADERS
|
|
||||||
|
|
||||||
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
|
|
||||||
#undef TIME_WITH_SYS_TIME
|
|
||||||
|
|
||||||
/* Version number of package */
|
|
||||||
#undef VERSION
|
|
||||||
|
|
||||||
/* Define to 1 if your processor stores words with the most significant byte
|
|
||||||
first (like Motorola and SPARC, unlike Intel and VAX). */
|
|
||||||
#undef WORDS_BIGENDIAN
|
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
|
||||||
#undef _FILE_OFFSET_BITS
|
|
||||||
|
|
||||||
/* Define for large files, on AIX-style hosts. */
|
|
||||||
#undef _LARGE_FILES
|
|
||||||
|
|
||||||
/* Define to `unsigned int' if <sys/types.h> does not define. */
|
|
||||||
#undef size_t
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,586 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# ecasound/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
bin_PROGRAMS = ecasound$(EXEEXT)
|
|
||||||
#bin_PROGRAMS = ecasound_debug$(EXEEXT)
|
|
||||||
subdir = ecasound
|
|
||||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
am__installdirs = "$(DESTDIR)$(bindir)"
|
|
||||||
binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
|
|
||||||
PROGRAMS = $(bin_PROGRAMS)
|
|
||||||
am_ecasound_OBJECTS = ecasound.$(OBJEXT) eca-curses.$(OBJEXT) \
|
|
||||||
eca-comhelp.$(OBJEXT) eca-neteci-server.$(OBJEXT) \
|
|
||||||
eca-plaintext.$(OBJEXT) textdebug.$(OBJEXT)
|
|
||||||
ecasound_OBJECTS = $(am_ecasound_OBJECTS)
|
|
||||||
am__DEPENDENCIES_1 =
|
|
||||||
am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
|
|
||||||
ecasound_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \
|
|
||||||
$(top_builddir)/libecasound/libecasound.la \
|
|
||||||
$(top_builddir)/kvutils/libkvutils.la
|
|
||||||
am__objects_1 = ecasound.$(OBJEXT) eca-curses.$(OBJEXT) \
|
|
||||||
eca-comhelp.$(OBJEXT) eca-neteci-server.$(OBJEXT) \
|
|
||||||
eca-plaintext.$(OBJEXT) textdebug.$(OBJEXT)
|
|
||||||
am_ecasound_debug_OBJECTS = $(am__objects_1)
|
|
||||||
ecasound_debug_OBJECTS = $(am_ecasound_debug_OBJECTS)
|
|
||||||
ecasound_debug_DEPENDENCIES = $(am__DEPENDENCIES_2) \
|
|
||||||
$(am__DEPENDENCIES_1) \
|
|
||||||
$(top_builddir)/libecasound/libecasound_debug.la \
|
|
||||||
$(top_builddir)/kvutils/libkvutils_debug.la
|
|
||||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
|
||||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
|
||||||
am__depfiles_maybe = depfiles
|
|
||||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
|
||||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
|
||||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
|
|
||||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
||||||
$(AM_CXXFLAGS) $(CXXFLAGS)
|
|
||||||
CXXLD = $(CXX)
|
|
||||||
CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
|
||||||
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
||||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
|
||||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
|
||||||
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
|
||||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
||||||
$(AM_CFLAGS) $(CFLAGS)
|
|
||||||
CCLD = $(CC)
|
|
||||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
|
||||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
||||||
SOURCES = $(ecasound_SOURCES) $(ecasound_debug_SOURCES)
|
|
||||||
DIST_SOURCES = $(ecasound_SOURCES) $(ecasound_debug_SOURCES)
|
|
||||||
ETAGS = etags
|
|
||||||
CTAGS = ctags
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
INCLUDES = -I$(ECA_S_READLINE_INCLUDES) -I$(srcdir) -I$(top_srcdir) -I$(top_srcdir)/libecasound -I$(top_srcdir)/kvutils
|
|
||||||
termcap_library_ncurses = -lncurses
|
|
||||||
#termcap_library_termcap = -ltermcap
|
|
||||||
termcap_library = $(termcap_library_ncurses) $(termcap_library_termcap)
|
|
||||||
ecasound_SOURCES = ecasound.cpp \
|
|
||||||
ecasound.h \
|
|
||||||
eca-console.h \
|
|
||||||
eca-curses.h \
|
|
||||||
eca-curses.cpp \
|
|
||||||
eca-comhelp.cpp \
|
|
||||||
eca-comhelp.h \
|
|
||||||
eca-neteci-server.cpp \
|
|
||||||
eca-neteci-server.h \
|
|
||||||
eca-plaintext.h \
|
|
||||||
eca-plaintext.cpp \
|
|
||||||
textdebug.cpp \
|
|
||||||
textdebug.h
|
|
||||||
|
|
||||||
ecasound_debug_SOURCES = $(ecasound_SOURCES)
|
|
||||||
ecasound_LDFLAGS = -export-dynamic
|
|
||||||
ecasound_LDADD = $(termcap_library) \
|
|
||||||
$(ECA_S_READLINE_LIBS) \
|
|
||||||
$(top_builddir)/libecasound/libecasound.la \
|
|
||||||
$(top_builddir)/kvutils/libkvutils.la
|
|
||||||
|
|
||||||
ecasound_debug_LDFLAGS = $(ecasound_LDFLAGS)
|
|
||||||
ecasound_debug_LDADD = $(termcap_library) \
|
|
||||||
$(ECA_S_READLINE_LIBS) \
|
|
||||||
$(top_builddir)/libecasound/libecasound_debug.la \
|
|
||||||
$(top_builddir)/kvutils/libkvutils_debug.la
|
|
||||||
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
.SUFFIXES: .cpp .lo .o .obj
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign ecasound/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign ecasound/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
install-binPROGRAMS: $(bin_PROGRAMS)
|
|
||||||
@$(NORMAL_INSTALL)
|
|
||||||
test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
|
|
||||||
@list='$(bin_PROGRAMS)'; for p in $$list; do \
|
|
||||||
p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
|
||||||
if test -f $$p \
|
|
||||||
|| test -f $$p1 \
|
|
||||||
; then \
|
|
||||||
f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
|
|
||||||
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
|
|
||||||
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \
|
|
||||||
else :; fi; \
|
|
||||||
done
|
|
||||||
|
|
||||||
uninstall-binPROGRAMS:
|
|
||||||
@$(NORMAL_UNINSTALL)
|
|
||||||
@list='$(bin_PROGRAMS)'; for p in $$list; do \
|
|
||||||
f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
|
|
||||||
echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
|
|
||||||
rm -f "$(DESTDIR)$(bindir)/$$f"; \
|
|
||||||
done
|
|
||||||
|
|
||||||
clean-binPROGRAMS:
|
|
||||||
@list='$(bin_PROGRAMS)'; for p in $$list; do \
|
|
||||||
f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
|
||||||
echo " rm -f $$p $$f"; \
|
|
||||||
rm -f $$p $$f ; \
|
|
||||||
done
|
|
||||||
ecasound$(EXEEXT): $(ecasound_OBJECTS) $(ecasound_DEPENDENCIES)
|
|
||||||
@rm -f ecasound$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecasound_LDFLAGS) $(ecasound_OBJECTS) $(ecasound_LDADD) $(LIBS)
|
|
||||||
ecasound_debug$(EXEEXT): $(ecasound_debug_OBJECTS) $(ecasound_debug_DEPENDENCIES)
|
|
||||||
@rm -f ecasound_debug$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecasound_debug_LDFLAGS) $(ecasound_debug_OBJECTS) $(ecasound_debug_LDADD) $(LIBS)
|
|
||||||
|
|
||||||
mostlyclean-compile:
|
|
||||||
-rm -f *.$(OBJEXT)
|
|
||||||
|
|
||||||
distclean-compile:
|
|
||||||
-rm -f *.tab.c
|
|
||||||
|
|
||||||
include ./$(DEPDIR)/eca-comhelp.Po
|
|
||||||
include ./$(DEPDIR)/eca-curses.Po
|
|
||||||
include ./$(DEPDIR)/eca-neteci-server.Po
|
|
||||||
include ./$(DEPDIR)/eca-plaintext.Po
|
|
||||||
include ./$(DEPDIR)/ecasound.Po
|
|
||||||
include ./$(DEPDIR)/textdebug.Po
|
|
||||||
|
|
||||||
.cpp.o:
|
|
||||||
if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(CXXCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
|
||||||
|
|
||||||
.cpp.lo:
|
|
||||||
if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(LTCXXCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
|
|
||||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
mkid -fID $$unique
|
|
||||||
tags: TAGS
|
|
||||||
|
|
||||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
|
||||||
test -n "$$unique" || unique=$$empty_fix; \
|
|
||||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
||||||
$$tags $$unique; \
|
|
||||||
fi
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
|
||||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
||||||
$$tags $$unique
|
|
||||||
|
|
||||||
GTAGS:
|
|
||||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
||||||
&& cd $(top_srcdir) \
|
|
||||||
&& gtags -i $(GTAGS_ARGS) $$here
|
|
||||||
|
|
||||||
distclean-tags:
|
|
||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile $(PROGRAMS)
|
|
||||||
installdirs:
|
|
||||||
for dir in "$(DESTDIR)$(bindir)"; do \
|
|
||||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
|
||||||
done
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-compile distclean-generic \
|
|
||||||
distclean-libtool distclean-tags
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am:
|
|
||||||
|
|
||||||
install-exec-am: install-binPROGRAMS
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
|
||||||
mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-binPROGRAMS uninstall-info-am
|
|
||||||
|
|
||||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
|
|
||||||
clean-generic clean-libtool ctags distclean distclean-compile \
|
|
||||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
|
||||||
dvi-am html html-am info info-am install install-am \
|
|
||||||
install-binPROGRAMS install-data install-data-am install-exec \
|
|
||||||
install-exec-am install-info install-info-am install-man \
|
|
||||||
install-strip installcheck installcheck-am installdirs \
|
|
||||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
|
||||||
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
|
||||||
pdf pdf-am ps ps-am tags uninstall uninstall-am \
|
|
||||||
uninstall-binPROGRAMS uninstall-info-am
|
|
||||||
|
|
||||||
|
|
||||||
# --
|
|
||||||
|
|
||||||
# special targets with dependency tracking
|
|
||||||
ecainstall:
|
|
||||||
$(MAKE) -C $(srcdir)/../libecasound -q 2>/dev/null || make -C $(srcdir)/../libecasound
|
|
||||||
$(MAKE) -C $(srcdir)/../kvutils -q 2>/dev/null || make -C $(srcdir)/../kvutils
|
|
||||||
$(MAKE) install
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
|
@ -1,736 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# ecatools/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/ecatools/Makefile.am
|
|
||||||
# Description: Utility applications built on Ecasound libraries
|
|
||||||
# License: GPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
bin_PROGRAMS = ecaconvert$(EXEEXT) \
|
|
||||||
ecafixdc$(EXEEXT) ecalength$(EXEEXT) \
|
|
||||||
ecanormalize$(EXEEXT) \
|
|
||||||
ecaplay$(EXEEXT) \
|
|
||||||
ecasignalview$(EXEEXT)
|
|
||||||
#bin_PROGRAMS = ecaconvert_debug$(EXEEXT) \
|
|
||||||
# ecafixdc_debug$(EXEEXT) \
|
|
||||||
# ecalength_debug$(EXEEXT) \
|
|
||||||
# ecanormalize_debug$(EXEEXT) \
|
|
||||||
# ecaplay_debug$(EXEEXT) \
|
|
||||||
# ecasignalview_debug$(EXEEXT)
|
|
||||||
subdir = ecatools
|
|
||||||
DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
|
|
||||||
$(srcdir)/Makefile.in
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"
|
|
||||||
binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
|
|
||||||
PROGRAMS = $(bin_PROGRAMS)
|
|
||||||
am_ecaconvert_OBJECTS = ecaconvert.$(OBJEXT) ecicpp_helpers.$(OBJEXT)
|
|
||||||
ecaconvert_OBJECTS = $(am_ecaconvert_OBJECTS)
|
|
||||||
am__DEPENDENCIES_1 = $(top_builddir)/libecasoundc/libecasoundc.la
|
|
||||||
#am__DEPENDENCIES_1 = $(top_builddir)/libecasoundc/libecasoundc_debug.la
|
|
||||||
am__DEPENDENCIES_2 = $(top_builddir)/kvutils/libkvutils.la
|
|
||||||
#am__DEPENDENCIES_2 = $(top_builddir)/kvutils/libkvutils_debug.la
|
|
||||||
ecaconvert_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2)
|
|
||||||
am__objects_1 = ecaconvert.$(OBJEXT) ecicpp_helpers.$(OBJEXT)
|
|
||||||
am_ecaconvert_debug_OBJECTS = $(am__objects_1)
|
|
||||||
ecaconvert_debug_OBJECTS = $(am_ecaconvert_debug_OBJECTS)
|
|
||||||
am__DEPENDENCIES_3 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2)
|
|
||||||
ecaconvert_debug_DEPENDENCIES = $(am__DEPENDENCIES_3)
|
|
||||||
am_ecafixdc_OBJECTS = ecafixdc.$(OBJEXT) ecicpp_helpers.$(OBJEXT)
|
|
||||||
ecafixdc_OBJECTS = $(am_ecafixdc_OBJECTS)
|
|
||||||
ecafixdc_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2)
|
|
||||||
am__objects_2 = ecafixdc.$(OBJEXT) ecicpp_helpers.$(OBJEXT)
|
|
||||||
am_ecafixdc_debug_OBJECTS = $(am__objects_2)
|
|
||||||
ecafixdc_debug_OBJECTS = $(am_ecafixdc_debug_OBJECTS)
|
|
||||||
ecafixdc_debug_DEPENDENCIES = $(am__DEPENDENCIES_3)
|
|
||||||
am_ecalength_OBJECTS = ecalength.$(OBJEXT)
|
|
||||||
ecalength_OBJECTS = $(am_ecalength_OBJECTS)
|
|
||||||
ecalength_DEPENDENCIES = $(am__DEPENDENCIES_1)
|
|
||||||
am__objects_3 = ecalength.$(OBJEXT)
|
|
||||||
am_ecalength_debug_OBJECTS = $(am__objects_3)
|
|
||||||
ecalength_debug_OBJECTS = $(am_ecalength_debug_OBJECTS)
|
|
||||||
am__DEPENDENCIES_4 = $(am__DEPENDENCIES_1)
|
|
||||||
ecalength_debug_DEPENDENCIES = $(am__DEPENDENCIES_4)
|
|
||||||
am_ecanormalize_OBJECTS = ecanormalize.$(OBJEXT) \
|
|
||||||
ecicpp_helpers.$(OBJEXT)
|
|
||||||
ecanormalize_OBJECTS = $(am_ecanormalize_OBJECTS)
|
|
||||||
ecanormalize_DEPENDENCIES = $(am__DEPENDENCIES_1) \
|
|
||||||
$(am__DEPENDENCIES_2)
|
|
||||||
am__objects_4 = ecanormalize.$(OBJEXT) ecicpp_helpers.$(OBJEXT)
|
|
||||||
am_ecanormalize_debug_OBJECTS = $(am__objects_4)
|
|
||||||
ecanormalize_debug_OBJECTS = $(am_ecanormalize_debug_OBJECTS)
|
|
||||||
ecanormalize_debug_DEPENDENCIES = $(am__DEPENDENCIES_3)
|
|
||||||
am_ecaplay_OBJECTS = ecaplay.$(OBJEXT)
|
|
||||||
ecaplay_OBJECTS = $(am_ecaplay_OBJECTS)
|
|
||||||
ecaplay_DEPENDENCIES = $(am__DEPENDENCIES_1)
|
|
||||||
am__objects_5 = ecaplay.$(OBJEXT)
|
|
||||||
am_ecaplay_debug_OBJECTS = $(am__objects_5)
|
|
||||||
ecaplay_debug_OBJECTS = $(am_ecaplay_debug_OBJECTS)
|
|
||||||
ecaplay_debug_DEPENDENCIES = $(am__DEPENDENCIES_4)
|
|
||||||
am_ecasignalview_OBJECTS = ecasignalview.$(OBJEXT) \
|
|
||||||
ecicpp_helpers.$(OBJEXT)
|
|
||||||
ecasignalview_OBJECTS = $(am_ecasignalview_OBJECTS)
|
|
||||||
am__DEPENDENCIES_5 =
|
|
||||||
ecasignalview_DEPENDENCIES = $(am__DEPENDENCIES_1) \
|
|
||||||
$(am__DEPENDENCIES_2) $(am__DEPENDENCIES_5) \
|
|
||||||
$(am__DEPENDENCIES_5)
|
|
||||||
am__objects_6 = ecasignalview.$(OBJEXT) ecicpp_helpers.$(OBJEXT)
|
|
||||||
am_ecasignalview_debug_OBJECTS = $(am__objects_6)
|
|
||||||
ecasignalview_debug_OBJECTS = $(am_ecasignalview_debug_OBJECTS)
|
|
||||||
am__DEPENDENCIES_6 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \
|
|
||||||
$(am__DEPENDENCIES_5) $(am__DEPENDENCIES_5)
|
|
||||||
ecasignalview_debug_DEPENDENCIES = $(am__DEPENDENCIES_6)
|
|
||||||
binSCRIPT_INSTALL = $(INSTALL_SCRIPT)
|
|
||||||
SCRIPTS = $(bin_SCRIPTS)
|
|
||||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
|
||||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
|
||||||
am__depfiles_maybe = depfiles
|
|
||||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
|
||||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
|
||||||
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
|
||||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
||||||
$(AM_CFLAGS) $(CFLAGS)
|
|
||||||
CCLD = $(CC)
|
|
||||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
|
||||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
||||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
|
||||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
|
||||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
|
|
||||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
||||||
$(AM_CXXFLAGS) $(CXXFLAGS)
|
|
||||||
CXXLD = $(CXX)
|
|
||||||
CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
|
||||||
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
||||||
SOURCES = $(ecaconvert_SOURCES) $(ecaconvert_debug_SOURCES) \
|
|
||||||
$(ecafixdc_SOURCES) $(ecafixdc_debug_SOURCES) \
|
|
||||||
$(ecalength_SOURCES) $(ecalength_debug_SOURCES) \
|
|
||||||
$(ecanormalize_SOURCES) $(ecanormalize_debug_SOURCES) \
|
|
||||||
$(ecaplay_SOURCES) $(ecaplay_debug_SOURCES) \
|
|
||||||
$(ecasignalview_SOURCES) $(ecasignalview_debug_SOURCES)
|
|
||||||
DIST_SOURCES = $(ecaconvert_SOURCES) $(ecaconvert_debug_SOURCES) \
|
|
||||||
$(ecafixdc_SOURCES) $(ecafixdc_debug_SOURCES) \
|
|
||||||
$(ecalength_SOURCES) $(ecalength_debug_SOURCES) \
|
|
||||||
$(ecanormalize_SOURCES) $(ecanormalize_debug_SOURCES) \
|
|
||||||
$(ecaplay_SOURCES) $(ecaplay_debug_SOURCES) \
|
|
||||||
$(ecasignalview_SOURCES) $(ecasignalview_debug_SOURCES)
|
|
||||||
HEADERS = $(noinst_HEADERS)
|
|
||||||
ETAGS = etags
|
|
||||||
CTAGS = ctags
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
EXTRA_DIST = ecasound.el ecamonitor
|
|
||||||
libkvutils_path = $(top_builddir)/kvutils/libkvutils.la
|
|
||||||
#libkvutils_path = $(top_builddir)/kvutils/libkvutils_debug.la
|
|
||||||
libecasoundc_path = $(top_builddir)/libecasoundc/libecasoundc.la
|
|
||||||
#libecasoundc_path = $(top_builddir)/libecasoundc/libecasoundc_debug.la
|
|
||||||
ncurses_library = -lncurses
|
|
||||||
#termcap_library = -ltermcap
|
|
||||||
INCLUDES = -I$(srcdir) -I$(top_srcdir) -I$(top_srcdir)/kvutils -I$(top_srcdir)/libecasound -I$(top_srcdir)/libecasoundc
|
|
||||||
bin_SCRIPTS = ecamonitor
|
|
||||||
|
|
||||||
# --
|
|
||||||
noinst_HEADERS = ecicpp_helpers.h
|
|
||||||
ecaconvert_SOURCES = ecaconvert.cpp ecicpp_helpers.cpp
|
|
||||||
ecaconvert_LDADD = $(libecasoundc_path) $(libkvutils_path)
|
|
||||||
ecafixdc_SOURCES = ecafixdc.cpp ecicpp_helpers.cpp
|
|
||||||
ecafixdc_LDADD = $(libecasoundc_path) $(libkvutils_path)
|
|
||||||
ecalength_SOURCES = ecalength.c
|
|
||||||
ecalength_LDADD = $(libecasoundc_path)
|
|
||||||
ecanormalize_SOURCES = ecanormalize.cpp ecicpp_helpers.cpp
|
|
||||||
ecanormalize_LDADD = $(libecasoundc_path) $(libkvutils_path)
|
|
||||||
ecaplay_SOURCES = ecaplay.c
|
|
||||||
ecaplay_LDADD = $(libecasoundc_path)
|
|
||||||
ecasignalview_SOURCES = ecasignalview.cpp ecicpp_helpers.cpp
|
|
||||||
ecasignalview_LDADD = $(libecasoundc_path) $(libkvutils_path) $(termcap_library) $(ncurses_library)
|
|
||||||
|
|
||||||
# --
|
|
||||||
ecaconvert_debug_SOURCES = $(ecaconvert_SOURCES)
|
|
||||||
ecaconvert_debug_LDADD = $(ecaconvert_LDADD)
|
|
||||||
ecafixdc_debug_SOURCES = $(ecafixdc_SOURCES)
|
|
||||||
ecafixdc_debug_LDADD = $(ecafixdc_LDADD)
|
|
||||||
ecalength_debug_SOURCES = $(ecalength_SOURCES)
|
|
||||||
ecalength_debug_LDADD = $(ecalength_LDADD)
|
|
||||||
ecanormalize_debug_SOURCES = $(ecanormalize_SOURCES)
|
|
||||||
ecanormalize_debug_LDADD = $(ecanormalize_LDADD)
|
|
||||||
ecanormalize_debug_LDFLAGS = $(ecanormalize_LDFLAGS)
|
|
||||||
ecaplay_debug_SOURCES = $(ecaplay_SOURCES)
|
|
||||||
ecaplay_debug_LDADD = $(ecaplay_LDADD)
|
|
||||||
ecasignalview_debug_SOURCES = $(ecasignalview_SOURCES)
|
|
||||||
ecasignalview_debug_LDADD = $(ecasignalview_LDADD)
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
.SUFFIXES: .c .cpp .lo .o .obj
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign ecatools/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign ecatools/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
install-binPROGRAMS: $(bin_PROGRAMS)
|
|
||||||
@$(NORMAL_INSTALL)
|
|
||||||
test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
|
|
||||||
@list='$(bin_PROGRAMS)'; for p in $$list; do \
|
|
||||||
p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
|
||||||
if test -f $$p \
|
|
||||||
|| test -f $$p1 \
|
|
||||||
; then \
|
|
||||||
f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
|
|
||||||
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
|
|
||||||
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \
|
|
||||||
else :; fi; \
|
|
||||||
done
|
|
||||||
|
|
||||||
uninstall-binPROGRAMS:
|
|
||||||
@$(NORMAL_UNINSTALL)
|
|
||||||
@list='$(bin_PROGRAMS)'; for p in $$list; do \
|
|
||||||
f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
|
|
||||||
echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
|
|
||||||
rm -f "$(DESTDIR)$(bindir)/$$f"; \
|
|
||||||
done
|
|
||||||
|
|
||||||
clean-binPROGRAMS:
|
|
||||||
@list='$(bin_PROGRAMS)'; for p in $$list; do \
|
|
||||||
f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
|
||||||
echo " rm -f $$p $$f"; \
|
|
||||||
rm -f $$p $$f ; \
|
|
||||||
done
|
|
||||||
ecaconvert$(EXEEXT): $(ecaconvert_OBJECTS) $(ecaconvert_DEPENDENCIES)
|
|
||||||
@rm -f ecaconvert$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecaconvert_LDFLAGS) $(ecaconvert_OBJECTS) $(ecaconvert_LDADD) $(LIBS)
|
|
||||||
ecaconvert_debug$(EXEEXT): $(ecaconvert_debug_OBJECTS) $(ecaconvert_debug_DEPENDENCIES)
|
|
||||||
@rm -f ecaconvert_debug$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecaconvert_debug_LDFLAGS) $(ecaconvert_debug_OBJECTS) $(ecaconvert_debug_LDADD) $(LIBS)
|
|
||||||
ecafixdc$(EXEEXT): $(ecafixdc_OBJECTS) $(ecafixdc_DEPENDENCIES)
|
|
||||||
@rm -f ecafixdc$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecafixdc_LDFLAGS) $(ecafixdc_OBJECTS) $(ecafixdc_LDADD) $(LIBS)
|
|
||||||
ecafixdc_debug$(EXEEXT): $(ecafixdc_debug_OBJECTS) $(ecafixdc_debug_DEPENDENCIES)
|
|
||||||
@rm -f ecafixdc_debug$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecafixdc_debug_LDFLAGS) $(ecafixdc_debug_OBJECTS) $(ecafixdc_debug_LDADD) $(LIBS)
|
|
||||||
ecalength$(EXEEXT): $(ecalength_OBJECTS) $(ecalength_DEPENDENCIES)
|
|
||||||
@rm -f ecalength$(EXEEXT)
|
|
||||||
$(LINK) $(ecalength_LDFLAGS) $(ecalength_OBJECTS) $(ecalength_LDADD) $(LIBS)
|
|
||||||
ecalength_debug$(EXEEXT): $(ecalength_debug_OBJECTS) $(ecalength_debug_DEPENDENCIES)
|
|
||||||
@rm -f ecalength_debug$(EXEEXT)
|
|
||||||
$(LINK) $(ecalength_debug_LDFLAGS) $(ecalength_debug_OBJECTS) $(ecalength_debug_LDADD) $(LIBS)
|
|
||||||
ecanormalize$(EXEEXT): $(ecanormalize_OBJECTS) $(ecanormalize_DEPENDENCIES)
|
|
||||||
@rm -f ecanormalize$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecanormalize_LDFLAGS) $(ecanormalize_OBJECTS) $(ecanormalize_LDADD) $(LIBS)
|
|
||||||
ecanormalize_debug$(EXEEXT): $(ecanormalize_debug_OBJECTS) $(ecanormalize_debug_DEPENDENCIES)
|
|
||||||
@rm -f ecanormalize_debug$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecanormalize_debug_LDFLAGS) $(ecanormalize_debug_OBJECTS) $(ecanormalize_debug_LDADD) $(LIBS)
|
|
||||||
ecaplay$(EXEEXT): $(ecaplay_OBJECTS) $(ecaplay_DEPENDENCIES)
|
|
||||||
@rm -f ecaplay$(EXEEXT)
|
|
||||||
$(LINK) $(ecaplay_LDFLAGS) $(ecaplay_OBJECTS) $(ecaplay_LDADD) $(LIBS)
|
|
||||||
ecaplay_debug$(EXEEXT): $(ecaplay_debug_OBJECTS) $(ecaplay_debug_DEPENDENCIES)
|
|
||||||
@rm -f ecaplay_debug$(EXEEXT)
|
|
||||||
$(LINK) $(ecaplay_debug_LDFLAGS) $(ecaplay_debug_OBJECTS) $(ecaplay_debug_LDADD) $(LIBS)
|
|
||||||
ecasignalview$(EXEEXT): $(ecasignalview_OBJECTS) $(ecasignalview_DEPENDENCIES)
|
|
||||||
@rm -f ecasignalview$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecasignalview_LDFLAGS) $(ecasignalview_OBJECTS) $(ecasignalview_LDADD) $(LIBS)
|
|
||||||
ecasignalview_debug$(EXEEXT): $(ecasignalview_debug_OBJECTS) $(ecasignalview_debug_DEPENDENCIES)
|
|
||||||
@rm -f ecasignalview_debug$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecasignalview_debug_LDFLAGS) $(ecasignalview_debug_OBJECTS) $(ecasignalview_debug_LDADD) $(LIBS)
|
|
||||||
install-binSCRIPTS: $(bin_SCRIPTS)
|
|
||||||
@$(NORMAL_INSTALL)
|
|
||||||
test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
|
|
||||||
@list='$(bin_SCRIPTS)'; for p in $$list; do \
|
|
||||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
||||||
if test -f $$d$$p; then \
|
|
||||||
f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
|
|
||||||
echo " $(binSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(bindir)/$$f'"; \
|
|
||||||
$(binSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(bindir)/$$f"; \
|
|
||||||
else :; fi; \
|
|
||||||
done
|
|
||||||
|
|
||||||
uninstall-binSCRIPTS:
|
|
||||||
@$(NORMAL_UNINSTALL)
|
|
||||||
@list='$(bin_SCRIPTS)'; for p in $$list; do \
|
|
||||||
f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
|
|
||||||
echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
|
|
||||||
rm -f "$(DESTDIR)$(bindir)/$$f"; \
|
|
||||||
done
|
|
||||||
|
|
||||||
mostlyclean-compile:
|
|
||||||
-rm -f *.$(OBJEXT)
|
|
||||||
|
|
||||||
distclean-compile:
|
|
||||||
-rm -f *.tab.c
|
|
||||||
|
|
||||||
include ./$(DEPDIR)/ecaconvert.Po
|
|
||||||
include ./$(DEPDIR)/ecafixdc.Po
|
|
||||||
include ./$(DEPDIR)/ecalength.Po
|
|
||||||
include ./$(DEPDIR)/ecanormalize.Po
|
|
||||||
include ./$(DEPDIR)/ecaplay.Po
|
|
||||||
include ./$(DEPDIR)/ecasignalview.Po
|
|
||||||
include ./$(DEPDIR)/ecicpp_helpers.Po
|
|
||||||
|
|
||||||
.c.o:
|
|
||||||
if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(COMPILE) -c $<
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
|
||||||
|
|
||||||
.c.lo:
|
|
||||||
if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(LTCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
.cpp.o:
|
|
||||||
if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(CXXCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
|
||||||
|
|
||||||
.cpp.lo:
|
|
||||||
if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(LTCXXCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
|
|
||||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
mkid -fID $$unique
|
|
||||||
tags: TAGS
|
|
||||||
|
|
||||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
|
||||||
test -n "$$unique" || unique=$$empty_fix; \
|
|
||||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
||||||
$$tags $$unique; \
|
|
||||||
fi
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
|
||||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
||||||
$$tags $$unique
|
|
||||||
|
|
||||||
GTAGS:
|
|
||||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
||||||
&& cd $(top_srcdir) \
|
|
||||||
&& gtags -i $(GTAGS_ARGS) $$here
|
|
||||||
|
|
||||||
distclean-tags:
|
|
||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile $(PROGRAMS) $(SCRIPTS) $(HEADERS)
|
|
||||||
installdirs:
|
|
||||||
for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"; do \
|
|
||||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
|
||||||
done
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-compile distclean-generic \
|
|
||||||
distclean-libtool distclean-tags
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am:
|
|
||||||
|
|
||||||
install-exec-am: install-binPROGRAMS install-binSCRIPTS
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
|
||||||
mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
|
|
||||||
uninstall-info-am
|
|
||||||
|
|
||||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
|
|
||||||
clean-generic clean-libtool ctags distclean distclean-compile \
|
|
||||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
|
||||||
dvi-am html html-am info info-am install install-am \
|
|
||||||
install-binPROGRAMS install-binSCRIPTS install-data \
|
|
||||||
install-data-am install-exec install-exec-am install-info \
|
|
||||||
install-info-am install-man install-strip installcheck \
|
|
||||||
installcheck-am installdirs maintainer-clean \
|
|
||||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
|
||||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
|
||||||
tags uninstall uninstall-am uninstall-binPROGRAMS \
|
|
||||||
uninstall-binSCRIPTS uninstall-info-am
|
|
||||||
|
|
||||||
|
|
||||||
# --
|
|
||||||
|
|
||||||
# special targets with dependency tracking
|
|
||||||
ecainstall:
|
|
||||||
$(MAKE) -C $(srcdir)/../libecasound -q 2>/dev/null || make -C $(srcdir)/../libecasound
|
|
||||||
$(MAKE) -C $(srcdir)/../kvutils -q 2>/dev/null || make -C $(srcdir)/../kvutils
|
|
||||||
$(MAKE) install
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
|
@ -1,396 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# examples/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/examples/Makefile.am
|
|
||||||
# Description: Example applications that use Ecasound libraries
|
|
||||||
# License: GPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
subdir = examples
|
|
||||||
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
SOURCES =
|
|
||||||
DIST_SOURCES =
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
EXTRA_DIST = README \
|
|
||||||
ecatrimsilence.sh \
|
|
||||||
ecidoc_example.c \
|
|
||||||
ecidoc_example.cpp \
|
|
||||||
ecidoc_example.py \
|
|
||||||
normalize.py
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign examples/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
tags: TAGS
|
|
||||||
TAGS:
|
|
||||||
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS:
|
|
||||||
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile
|
|
||||||
installdirs:
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-generic distclean-libtool
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am:
|
|
||||||
|
|
||||||
install-exec-am:
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am
|
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
|
|
||||||
distclean distclean-generic distclean-libtool distdir dvi \
|
|
||||||
dvi-am html html-am info info-am install install-am \
|
|
||||||
install-data install-data-am install-exec install-exec-am \
|
|
||||||
install-info install-info-am install-man install-strip \
|
|
||||||
installcheck installcheck-am installdirs maintainer-clean \
|
|
||||||
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
|
||||||
mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
|
|
||||||
uninstall-info-am
|
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
|
@ -1,726 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# kvutils/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/kvutils/Makefile.am
|
|
||||||
# Description: Misc. utility routines (library created by Kai Vehmanen)
|
|
||||||
# License: GPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
check_PROGRAMS = $(am__EXEEXT_1)
|
|
||||||
subdir = kvutils
|
|
||||||
DIST_COMMON = README $(noinst_HEADERS) $(srcdir)/Makefile.am \
|
|
||||||
$(srcdir)/Makefile.in COPYING ChangeLog INSTALL
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
|
||||||
am__vpath_adj = case $$p in \
|
|
||||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
*) f=$$p;; \
|
|
||||||
esac;
|
|
||||||
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
|
||||||
am__installdirs = "$(DESTDIR)$(libdir)"
|
|
||||||
libLTLIBRARIES_INSTALL = $(INSTALL)
|
|
||||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
|
||||||
libkvutils_la_LIBADD =
|
|
||||||
am__objects_1 = kvu_dbc.lo kvu_debug.lo kvu_com_line.lo kvu_fd_io.lo \
|
|
||||||
kvu_locks.lo kvu_message_item.lo kvu_numtostr.lo \
|
|
||||||
kvu_procedure_timer.lo kvu_rtcaps.lo \
|
|
||||||
kvu_temporary_file_directory.lo kvu_threads.lo kvu_utils.lo \
|
|
||||||
kvu_timestamp.lo kvu_value_queue.lo
|
|
||||||
am__objects_2 =
|
|
||||||
am_libkvutils_la_OBJECTS = $(am__objects_1) $(am__objects_2)
|
|
||||||
libkvutils_la_OBJECTS = $(am_libkvutils_la_OBJECTS)
|
|
||||||
am_libkvutils_la_rpath = -rpath $(libdir)
|
|
||||||
libkvutils_debug_la_LIBADD =
|
|
||||||
am__objects_3 = $(am__objects_1) $(am__objects_2)
|
|
||||||
am_libkvutils_debug_la_OBJECTS = $(am__objects_3)
|
|
||||||
libkvutils_debug_la_OBJECTS = $(am_libkvutils_debug_la_OBJECTS)
|
|
||||||
#am_libkvutils_debug_la_rpath = -rpath \
|
|
||||||
# $(libdir)
|
|
||||||
am__EXEEXT_1 = libkvutils_tester$(EXEEXT)
|
|
||||||
am_libkvutils_tester_OBJECTS = libkvutils_tester.$(OBJEXT)
|
|
||||||
libkvutils_tester_OBJECTS = $(am_libkvutils_tester_OBJECTS)
|
|
||||||
am__DEPENDENCIES_1 = libkvutils.la
|
|
||||||
#am__DEPENDENCIES_1 = libkvutils_debug.la
|
|
||||||
libkvutils_tester_DEPENDENCIES = $(am__DEPENDENCIES_1)
|
|
||||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
|
||||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
|
||||||
am__depfiles_maybe = depfiles
|
|
||||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
|
||||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
|
||||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
|
|
||||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
||||||
$(AM_CXXFLAGS) $(CXXFLAGS)
|
|
||||||
CXXLD = $(CXX)
|
|
||||||
CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
|
||||||
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
||||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
|
||||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
|
||||||
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
|
||||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
||||||
$(AM_CFLAGS) $(CFLAGS)
|
|
||||||
CCLD = $(CC)
|
|
||||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
|
||||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
||||||
SOURCES = $(libkvutils_la_SOURCES) $(libkvutils_debug_la_SOURCES) \
|
|
||||||
$(libkvutils_tester_SOURCES)
|
|
||||||
DIST_SOURCES = $(libkvutils_la_SOURCES) $(libkvutils_debug_la_SOURCES) \
|
|
||||||
$(libkvutils_tester_SOURCES)
|
|
||||||
HEADERS = $(noinst_HEADERS)
|
|
||||||
ETAGS = etags
|
|
||||||
CTAGS = ctags
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
|
||||||
lib_LTLIBRARIES = libkvutils.la
|
|
||||||
|
|
||||||
# ---
|
|
||||||
# Makefile.am for building libkvutils.a
|
|
||||||
# ---
|
|
||||||
#lib_LTLIBRARIES = libkvutils_debug.la
|
|
||||||
TESTS = libkvutils_tester
|
|
||||||
INCLUDES = $(ECA_S_EXTRA_CPPFLAGS)
|
|
||||||
kvutil_sources = kvu_dbc.cpp \
|
|
||||||
kvu_debug.cpp \
|
|
||||||
kvu_com_line.cpp \
|
|
||||||
kvu_fd_io.cpp \
|
|
||||||
kvu_locks.cpp \
|
|
||||||
kvu_message_item.cpp \
|
|
||||||
kvu_numtostr.cpp \
|
|
||||||
kvu_procedure_timer.cpp \
|
|
||||||
kvu_rtcaps.cpp \
|
|
||||||
kvu_temporary_file_directory.cpp \
|
|
||||||
kvu_threads.cpp \
|
|
||||||
kvu_utils.cpp \
|
|
||||||
kvu_timestamp.cpp \
|
|
||||||
kvu_value_queue.cpp
|
|
||||||
|
|
||||||
kvutil_headers = kvu_dbc.h \
|
|
||||||
kvu_debug.h \
|
|
||||||
kvu_definition_by_contract.h \
|
|
||||||
kvu_com_line.h \
|
|
||||||
kvu_fd_io.h \
|
|
||||||
kvu_inttypes.h \
|
|
||||||
kvu_locks.h \
|
|
||||||
kvu_message_item.h \
|
|
||||||
kvu_message_queue.h \
|
|
||||||
kvu_numtostr.h \
|
|
||||||
kvu_object_queue.h \
|
|
||||||
kvu_procedure_timer.h \
|
|
||||||
kvu_rtcaps.h \
|
|
||||||
kvu_temporary_file_directory.h \
|
|
||||||
kvu_threads.h \
|
|
||||||
kvu_utils.h \
|
|
||||||
kvu_timestamp.h \
|
|
||||||
kvu_value_queue.h
|
|
||||||
|
|
||||||
libkvutils_la_SOURCES = $(kvutil_sources) $(kvutil_headers)
|
|
||||||
libkvutils_la_LDFLAGS = -version-info 9:0:5 -static
|
|
||||||
libkvutils_debug_la_SOURCES = $(libkvutils_la_SOURCES)
|
|
||||||
libkvutils_debug_la_LDFLAGS = $(libkvutils_la_LDFLAGS)
|
|
||||||
libkvutils_tester_SOURCES = libkvutils_tester.cpp
|
|
||||||
libkvutils_tester_LDFLAGS = -static
|
|
||||||
libkvutils_tester_LDADD = $(lib_LTLIBRARIES)
|
|
||||||
noinst_HEADERS = $(kvutil_headers)
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
.SUFFIXES: .cpp .lo .o .obj
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign kvutils/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign kvutils/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
|
||||||
@$(NORMAL_INSTALL)
|
|
||||||
test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
|
|
||||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
|
||||||
if test -f $$p; then \
|
|
||||||
f=$(am__strip_dir) \
|
|
||||||
echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
|
|
||||||
$(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
|
|
||||||
else :; fi; \
|
|
||||||
done
|
|
||||||
|
|
||||||
uninstall-libLTLIBRARIES:
|
|
||||||
@$(NORMAL_UNINSTALL)
|
|
||||||
@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
|
||||||
p=$(am__strip_dir) \
|
|
||||||
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
|
|
||||||
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
|
|
||||||
done
|
|
||||||
|
|
||||||
clean-libLTLIBRARIES:
|
|
||||||
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
|
||||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
|
||||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
|
||||||
test "$$dir" != "$$p" || dir=.; \
|
|
||||||
echo "rm -f \"$${dir}/so_locations\""; \
|
|
||||||
rm -f "$${dir}/so_locations"; \
|
|
||||||
done
|
|
||||||
libkvutils.la: $(libkvutils_la_OBJECTS) $(libkvutils_la_DEPENDENCIES)
|
|
||||||
$(CXXLINK) $(am_libkvutils_la_rpath) $(libkvutils_la_LDFLAGS) $(libkvutils_la_OBJECTS) $(libkvutils_la_LIBADD) $(LIBS)
|
|
||||||
libkvutils_debug.la: $(libkvutils_debug_la_OBJECTS) $(libkvutils_debug_la_DEPENDENCIES)
|
|
||||||
$(CXXLINK) $(am_libkvutils_debug_la_rpath) $(libkvutils_debug_la_LDFLAGS) $(libkvutils_debug_la_OBJECTS) $(libkvutils_debug_la_LIBADD) $(LIBS)
|
|
||||||
|
|
||||||
clean-checkPROGRAMS:
|
|
||||||
@list='$(check_PROGRAMS)'; for p in $$list; do \
|
|
||||||
f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
|
||||||
echo " rm -f $$p $$f"; \
|
|
||||||
rm -f $$p $$f ; \
|
|
||||||
done
|
|
||||||
libkvutils_tester$(EXEEXT): $(libkvutils_tester_OBJECTS) $(libkvutils_tester_DEPENDENCIES)
|
|
||||||
@rm -f libkvutils_tester$(EXEEXT)
|
|
||||||
$(CXXLINK) $(libkvutils_tester_LDFLAGS) $(libkvutils_tester_OBJECTS) $(libkvutils_tester_LDADD) $(LIBS)
|
|
||||||
|
|
||||||
mostlyclean-compile:
|
|
||||||
-rm -f *.$(OBJEXT)
|
|
||||||
|
|
||||||
distclean-compile:
|
|
||||||
-rm -f *.tab.c
|
|
||||||
|
|
||||||
include ./$(DEPDIR)/kvu_com_line.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_dbc.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_debug.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_fd_io.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_locks.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_message_item.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_numtostr.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_procedure_timer.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_rtcaps.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_temporary_file_directory.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_threads.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_timestamp.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_utils.Plo
|
|
||||||
include ./$(DEPDIR)/kvu_value_queue.Plo
|
|
||||||
include ./$(DEPDIR)/libkvutils_tester.Po
|
|
||||||
|
|
||||||
.cpp.o:
|
|
||||||
if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(CXXCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
|
||||||
|
|
||||||
.cpp.lo:
|
|
||||||
if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(LTCXXCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
|
|
||||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
mkid -fID $$unique
|
|
||||||
tags: TAGS
|
|
||||||
|
|
||||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
|
||||||
test -n "$$unique" || unique=$$empty_fix; \
|
|
||||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
||||||
$$tags $$unique; \
|
|
||||||
fi
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
|
||||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
||||||
$$tags $$unique
|
|
||||||
|
|
||||||
GTAGS:
|
|
||||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
||||||
&& cd $(top_srcdir) \
|
|
||||||
&& gtags -i $(GTAGS_ARGS) $$here
|
|
||||||
|
|
||||||
distclean-tags:
|
|
||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
||||||
|
|
||||||
check-TESTS: $(TESTS)
|
|
||||||
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
|
|
||||||
srcdir=$(srcdir); export srcdir; \
|
|
||||||
list='$(TESTS)'; \
|
|
||||||
if test -n "$$list"; then \
|
|
||||||
for tst in $$list; do \
|
|
||||||
if test -f ./$$tst; then dir=./; \
|
|
||||||
elif test -f $$tst; then dir=; \
|
|
||||||
else dir="$(srcdir)/"; fi; \
|
|
||||||
if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
|
|
||||||
all=`expr $$all + 1`; \
|
|
||||||
case " $(XFAIL_TESTS) " in \
|
|
||||||
*" $$tst "*) \
|
|
||||||
xpass=`expr $$xpass + 1`; \
|
|
||||||
failed=`expr $$failed + 1`; \
|
|
||||||
echo "XPASS: $$tst"; \
|
|
||||||
;; \
|
|
||||||
*) \
|
|
||||||
echo "PASS: $$tst"; \
|
|
||||||
;; \
|
|
||||||
esac; \
|
|
||||||
elif test $$? -ne 77; then \
|
|
||||||
all=`expr $$all + 1`; \
|
|
||||||
case " $(XFAIL_TESTS) " in \
|
|
||||||
*" $$tst "*) \
|
|
||||||
xfail=`expr $$xfail + 1`; \
|
|
||||||
echo "XFAIL: $$tst"; \
|
|
||||||
;; \
|
|
||||||
*) \
|
|
||||||
failed=`expr $$failed + 1`; \
|
|
||||||
echo "FAIL: $$tst"; \
|
|
||||||
;; \
|
|
||||||
esac; \
|
|
||||||
else \
|
|
||||||
skip=`expr $$skip + 1`; \
|
|
||||||
echo "SKIP: $$tst"; \
|
|
||||||
fi; \
|
|
||||||
done; \
|
|
||||||
if test "$$failed" -eq 0; then \
|
|
||||||
if test "$$xfail" -eq 0; then \
|
|
||||||
banner="All $$all tests passed"; \
|
|
||||||
else \
|
|
||||||
banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
|
|
||||||
fi; \
|
|
||||||
else \
|
|
||||||
if test "$$xpass" -eq 0; then \
|
|
||||||
banner="$$failed of $$all tests failed"; \
|
|
||||||
else \
|
|
||||||
banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
|
|
||||||
fi; \
|
|
||||||
fi; \
|
|
||||||
dashes="$$banner"; \
|
|
||||||
skipped=""; \
|
|
||||||
if test "$$skip" -ne 0; then \
|
|
||||||
skipped="($$skip tests were not run)"; \
|
|
||||||
test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
|
|
||||||
dashes="$$skipped"; \
|
|
||||||
fi; \
|
|
||||||
report=""; \
|
|
||||||
if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
|
|
||||||
report="Please report to $(PACKAGE_BUGREPORT)"; \
|
|
||||||
test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
|
|
||||||
dashes="$$report"; \
|
|
||||||
fi; \
|
|
||||||
dashes=`echo "$$dashes" | sed s/./=/g`; \
|
|
||||||
echo "$$dashes"; \
|
|
||||||
echo "$$banner"; \
|
|
||||||
test -z "$$skipped" || echo "$$skipped"; \
|
|
||||||
test -z "$$report" || echo "$$report"; \
|
|
||||||
echo "$$dashes"; \
|
|
||||||
test "$$failed" -eq 0; \
|
|
||||||
else :; fi
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile $(LTLIBRARIES) $(HEADERS)
|
|
||||||
installdirs:
|
|
||||||
for dir in "$(DESTDIR)$(libdir)"; do \
|
|
||||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
|
||||||
done
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
|
|
||||||
clean-libtool mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-compile distclean-generic \
|
|
||||||
distclean-libtool distclean-tags
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am: install-data-local
|
|
||||||
|
|
||||||
install-exec-am: install-libLTLIBRARIES
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
|
||||||
mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \
|
|
||||||
uninstall-local
|
|
||||||
|
|
||||||
.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
|
|
||||||
clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
|
|
||||||
clean-libtool ctags distclean distclean-compile \
|
|
||||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
|
||||||
dvi-am html html-am info info-am install install-am \
|
|
||||||
install-data install-data-am install-data-local install-exec \
|
|
||||||
install-exec-am install-info install-info-am \
|
|
||||||
install-libLTLIBRARIES install-man install-strip installcheck \
|
|
||||||
installcheck-am installdirs maintainer-clean \
|
|
||||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
|
||||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
|
||||||
tags uninstall uninstall-am uninstall-info-am \
|
|
||||||
uninstall-libLTLIBRARIES uninstall-local
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Install targets
|
|
||||||
install-data-local:
|
|
||||||
$(INSTALL) -d $(DESTDIR)$(includedir)/kvutils
|
|
||||||
cd $(srcdir) ; cp $(kvutil_headers) $(DESTDIR)$(includedir)/kvutils
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Uninstall targets
|
|
||||||
uninstall-local:
|
|
||||||
cd $(DESTDIR)$(includedir)/kvutils && \
|
|
||||||
rm -f $(kvutil_headers)
|
|
||||||
rmdir $(DESTDIR)$(includedir)/kvutils || echo "Skipping non-empty directory"
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,65 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
usage()
|
|
||||||
{
|
|
||||||
echo "usage: $0 [OPTIONS]"
|
|
||||||
cat << EOH
|
|
||||||
|
|
||||||
options:
|
|
||||||
[--prefix]
|
|
||||||
[--libs]
|
|
||||||
[--libs_debug]
|
|
||||||
[--ldflags]
|
|
||||||
[--cflags]
|
|
||||||
[--version]
|
|
||||||
EOH
|
|
||||||
exit 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
prefix=/usr/local
|
|
||||||
exec_prefix=${prefix}
|
|
||||||
libdir=${exec_prefix}/lib
|
|
||||||
includedir=${prefix}/include
|
|
||||||
libecasound_version=22
|
|
||||||
libkvutils_version=9
|
|
||||||
|
|
||||||
flags=""
|
|
||||||
|
|
||||||
while test $# -gt 0
|
|
||||||
do
|
|
||||||
case $1 in
|
|
||||||
--prefix)
|
|
||||||
flags="$flags $prefix"
|
|
||||||
;;
|
|
||||||
--libs)
|
|
||||||
flags="$flags -L$libdir -lecasound -lkvutils -lsamplerate -laudiofile -lsndfile -lasound "
|
|
||||||
;;
|
|
||||||
--libs_debug)
|
|
||||||
flags="$flags -L$libdir -lecasound_debug -lkvutils_debug -lsamplerate -laudiofile -lsndfile -lasound "
|
|
||||||
;;
|
|
||||||
--ldflags)
|
|
||||||
case "$libdir" in
|
|
||||||
/usr/lib);;
|
|
||||||
*)
|
|
||||||
flags="$flags -Wl,--rpath -Wl,$libdir" ;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
--cflags)
|
|
||||||
flags="$flags -I$includedir/libecasound -I$includedir/kvutils "
|
|
||||||
;;
|
|
||||||
--version)
|
|
||||||
echo 2.7.2
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "$0: unknown option $1"
|
|
||||||
echo
|
|
||||||
usage
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
if test -n "$flags"
|
|
||||||
then
|
|
||||||
echo $flags
|
|
||||||
fi
|
|
|
@ -1,629 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# libecasound/plugins/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/libecasound/plugins/Makefile.am
|
|
||||||
# Description: Audio I/O implementations that depend on external
|
|
||||||
# libraries
|
|
||||||
# License: GPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ../..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ../..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
subdir = libecasound/plugins
|
|
||||||
DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
|
|
||||||
$(srcdir)/Makefile.in
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
LTLIBRARIES = $(noinst_LTLIBRARIES)
|
|
||||||
am__DEPENDENCIES_1 =
|
|
||||||
libecasound_plugins_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
|
|
||||||
am__libecasound_plugins_la_SOURCES_DIST = audioio_dummy.cpp \
|
|
||||||
audioio_af.cpp audioio_alsa.cpp audioio_alsa_named.cpp \
|
|
||||||
audioio_arts.cpp audioio_jack.cpp audioio_jack_manager.cpp \
|
|
||||||
audioio_sndfile.cpp
|
|
||||||
am__objects_1 = audioio_af.lo
|
|
||||||
am__objects_2 = $(am__objects_1)
|
|
||||||
am__objects_3 = audioio_alsa.lo audioio_alsa_named.lo
|
|
||||||
am__objects_4 = $(am__objects_3)
|
|
||||||
am__objects_5 = audioio_arts.lo
|
|
||||||
#am__objects_6 = $(am__objects_5)
|
|
||||||
am__objects_7 = audioio_jack.lo audioio_jack_manager.lo
|
|
||||||
#am__objects_8 = $(am__objects_7)
|
|
||||||
am__objects_9 = audioio_sndfile.lo
|
|
||||||
am__objects_10 = $(am__objects_9)
|
|
||||||
am__objects_11 = $(am__objects_2) $(am__objects_4) $(am__objects_6) \
|
|
||||||
$(am__objects_8) $(am__objects_10)
|
|
||||||
am_libecasound_plugins_la_OBJECTS = audioio_dummy.lo $(am__objects_11)
|
|
||||||
libecasound_plugins_la_OBJECTS = $(am_libecasound_plugins_la_OBJECTS)
|
|
||||||
am_libecasound_plugins_la_rpath =
|
|
||||||
am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1)
|
|
||||||
libecasound_plugins_debug_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
|
|
||||||
am__libecasound_plugins_debug_la_SOURCES_DIST = audioio_dummy.cpp \
|
|
||||||
audioio_af.cpp audioio_alsa.cpp audioio_alsa_named.cpp \
|
|
||||||
audioio_arts.cpp audioio_jack.cpp audioio_jack_manager.cpp \
|
|
||||||
audioio_sndfile.cpp
|
|
||||||
am__objects_13 = audioio_dummy.lo $(am__objects_11)
|
|
||||||
am_libecasound_plugins_debug_la_OBJECTS = $(am__objects_13)
|
|
||||||
libecasound_plugins_debug_la_OBJECTS = \
|
|
||||||
$(am_libecasound_plugins_debug_la_OBJECTS)
|
|
||||||
#am_libecasound_plugins_debug_la_rpath =
|
|
||||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
|
||||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
|
||||||
am__depfiles_maybe = depfiles
|
|
||||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
|
||||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
|
||||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
|
|
||||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
||||||
$(AM_CXXFLAGS) $(CXXFLAGS)
|
|
||||||
CXXLD = $(CXX)
|
|
||||||
CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
|
||||||
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
||||||
SOURCES = $(libecasound_plugins_la_SOURCES) \
|
|
||||||
$(EXTRA_libecasound_plugins_la_SOURCES) \
|
|
||||||
$(libecasound_plugins_debug_la_SOURCES) \
|
|
||||||
$(EXTRA_libecasound_plugins_debug_la_SOURCES)
|
|
||||||
DIST_SOURCES = $(am__libecasound_plugins_la_SOURCES_DIST) \
|
|
||||||
$(EXTRA_libecasound_plugins_la_SOURCES) \
|
|
||||||
$(am__libecasound_plugins_debug_la_SOURCES_DIST) \
|
|
||||||
$(EXTRA_libecasound_plugins_debug_la_SOURCES)
|
|
||||||
HEADERS = $(noinst_HEADERS)
|
|
||||||
ETAGS = etags
|
|
||||||
CTAGS = ctags
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# defines
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
#common_clags = -DECA_ENABLE_AUDIOIO_PLUGINS
|
|
||||||
all_arts_src = audioio_arts.cpp
|
|
||||||
#arts_src = $(all_arts_src)
|
|
||||||
arts_target =
|
|
||||||
#arts_target = libaudioio_arts.la
|
|
||||||
all_alsa_src = audioio_alsa.cpp audioio_alsa_named.cpp
|
|
||||||
alsa_src = $(all_alsa_src)
|
|
||||||
#alsa_target =
|
|
||||||
alsa_target = libaudioio_alsa.la \
|
|
||||||
libaudioio_alsa_named.la
|
|
||||||
|
|
||||||
all_af_src = audioio_af.cpp
|
|
||||||
af_src = $(all_af_src)
|
|
||||||
#af_target =
|
|
||||||
af_target = libaudioio_af.la
|
|
||||||
all_sndfile_src = audioio_sndfile.cpp
|
|
||||||
sndfile_src = $(all_sndfile_src)
|
|
||||||
#sndfile_target =
|
|
||||||
sndfile_target = libaudioio_sndfile.la
|
|
||||||
all_jack_src = audioio_jack.cpp audioio_jack_manager.cpp
|
|
||||||
#jack_src = $(all_jack_src)
|
|
||||||
jack_target =
|
|
||||||
#jack_target = libaudioio_jack.la
|
|
||||||
INCLUDES = -I$(srcdir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_srcdir)/libecasound \
|
|
||||||
-I$(top_srcdir)/kvutils \
|
|
||||||
$(ECA_S_EXTRA_CPPFLAGS)
|
|
||||||
|
|
||||||
|
|
||||||
#libdir = $(exec_prefix)/lib/libecasound22-plugins
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# header files
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
plugin_includes = \
|
|
||||||
audioio_af.h \
|
|
||||||
audioio_alsa.h \
|
|
||||||
audioio_alsa_named.h \
|
|
||||||
audioio_arts.h \
|
|
||||||
audioio_jack.h \
|
|
||||||
audioio_jack_manager.h \
|
|
||||||
audioio_sndfile.h
|
|
||||||
|
|
||||||
noinst_HEADERS = $(plugin_includes)
|
|
||||||
noinst_LTLIBRARIES = libecasound_plugins.la
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# build targets and compiler options target defines
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
#noinst_LTLIBRARIES = libecasound_plugins_debug.la
|
|
||||||
plugin_cond_sources = $(af_src) \
|
|
||||||
$(alsa_src) \
|
|
||||||
$(arts_src) \
|
|
||||||
$(jack_src) \
|
|
||||||
$(sndfile_src)
|
|
||||||
|
|
||||||
plugin_all_sources = $(all_af_src) \
|
|
||||||
$(all_alsa_src) \
|
|
||||||
$(all_arts_src) \
|
|
||||||
$(all_jack_src) \
|
|
||||||
$(all_sndfile_src)
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# source files
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
libecasound_plugins_la_SOURCES = audioio_dummy.cpp $(plugin_cond_sources)
|
|
||||||
EXTRA_libecasound_plugins_la_SOURCES = $(plugin_all_sources)
|
|
||||||
libecasound_plugins_la_LIBADD = $(ECA_S_EXTRA_LIBS)
|
|
||||||
libecasound_plugins_la_LDFLAGS = -static
|
|
||||||
libecasound_plugins_debug_la_SOURCES = $(libecasound_plugins_la_SOURCES)
|
|
||||||
EXTRA_libecasound_plugins_debug_la_SOURCES = $(EXTRA_libecasound_plugins_la_SOURCES)
|
|
||||||
libecasound_plugins_debug_la_LIBADD = $(libecasound_plugins_la_LIBADD)
|
|
||||||
libecasound_plugins_debug_la_LDFLAGS = $(libecasound_plugins_la_LDFLAGS)
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
.SUFFIXES: .cpp .lo .o .obj
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libecasound/plugins/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign libecasound/plugins/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
clean-noinstLTLIBRARIES:
|
|
||||||
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
|
||||||
@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
|
|
||||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
|
||||||
test "$$dir" != "$$p" || dir=.; \
|
|
||||||
echo "rm -f \"$${dir}/so_locations\""; \
|
|
||||||
rm -f "$${dir}/so_locations"; \
|
|
||||||
done
|
|
||||||
libecasound_plugins.la: $(libecasound_plugins_la_OBJECTS) $(libecasound_plugins_la_DEPENDENCIES)
|
|
||||||
$(CXXLINK) $(am_libecasound_plugins_la_rpath) $(libecasound_plugins_la_LDFLAGS) $(libecasound_plugins_la_OBJECTS) $(libecasound_plugins_la_LIBADD) $(LIBS)
|
|
||||||
libecasound_plugins_debug.la: $(libecasound_plugins_debug_la_OBJECTS) $(libecasound_plugins_debug_la_DEPENDENCIES)
|
|
||||||
$(CXXLINK) $(am_libecasound_plugins_debug_la_rpath) $(libecasound_plugins_debug_la_LDFLAGS) $(libecasound_plugins_debug_la_OBJECTS) $(libecasound_plugins_debug_la_LIBADD) $(LIBS)
|
|
||||||
|
|
||||||
mostlyclean-compile:
|
|
||||||
-rm -f *.$(OBJEXT)
|
|
||||||
|
|
||||||
distclean-compile:
|
|
||||||
-rm -f *.tab.c
|
|
||||||
|
|
||||||
include ./$(DEPDIR)/audioio_af.Plo
|
|
||||||
include ./$(DEPDIR)/audioio_alsa.Plo
|
|
||||||
include ./$(DEPDIR)/audioio_alsa_named.Plo
|
|
||||||
include ./$(DEPDIR)/audioio_arts.Plo
|
|
||||||
include ./$(DEPDIR)/audioio_dummy.Plo
|
|
||||||
include ./$(DEPDIR)/audioio_jack.Plo
|
|
||||||
include ./$(DEPDIR)/audioio_jack_manager.Plo
|
|
||||||
include ./$(DEPDIR)/audioio_sndfile.Plo
|
|
||||||
|
|
||||||
.cpp.o:
|
|
||||||
if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(CXXCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
|
||||||
|
|
||||||
.cpp.lo:
|
|
||||||
if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(LTCXXCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
|
|
||||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
mkid -fID $$unique
|
|
||||||
tags: TAGS
|
|
||||||
|
|
||||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
|
||||||
test -n "$$unique" || unique=$$empty_fix; \
|
|
||||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
||||||
$$tags $$unique; \
|
|
||||||
fi
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
|
||||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
||||||
$$tags $$unique
|
|
||||||
|
|
||||||
GTAGS:
|
|
||||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
||||||
&& cd $(top_srcdir) \
|
|
||||||
&& gtags -i $(GTAGS_ARGS) $$here
|
|
||||||
|
|
||||||
distclean-tags:
|
|
||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile $(LTLIBRARIES) $(HEADERS)
|
|
||||||
installdirs:
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
|
||||||
mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-compile distclean-generic \
|
|
||||||
distclean-libtool distclean-tags
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am:
|
|
||||||
|
|
||||||
install-exec-am:
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
|
||||||
mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am
|
|
||||||
|
|
||||||
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
|
||||||
clean-libtool clean-noinstLTLIBRARIES ctags distclean \
|
|
||||||
distclean-compile distclean-generic distclean-libtool \
|
|
||||||
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
|
||||||
install install-am install-data install-data-am install-exec \
|
|
||||||
install-exec-am install-info install-info-am install-man \
|
|
||||||
install-strip installcheck installcheck-am installdirs \
|
|
||||||
maintainer-clean maintainer-clean-generic mostlyclean \
|
|
||||||
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
|
||||||
pdf pdf-am ps ps-am tags uninstall uninstall-am \
|
|
||||||
uninstall-info-am
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# separate rules for compiling non-libtool plugins
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
|
@ -1,785 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# libecasoundc/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/libecasoundc/Makefile.am
|
|
||||||
# Description: Ecasound Control Interface C implementation.
|
|
||||||
# License: LGPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
check_PROGRAMS = $(am__EXEEXT_1)
|
|
||||||
subdir = libecasoundc
|
|
||||||
DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
|
|
||||||
$(srcdir)/Makefile.in $(srcdir)/libecasoundc-config.in \
|
|
||||||
ChangeLog
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES = libecasoundc-config
|
|
||||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
|
||||||
am__vpath_adj = case $$p in \
|
|
||||||
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
*) f=$$p;; \
|
|
||||||
esac;
|
|
||||||
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
|
||||||
am__installdirs = "$(DESTDIR)$(libdir)"
|
|
||||||
libLTLIBRARIES_INSTALL = $(INSTALL)
|
|
||||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
|
||||||
libecasoundc_la_DEPENDENCIES =
|
|
||||||
am__objects_1 = libecasoundc_la-ecasoundc_sa.lo \
|
|
||||||
libecasoundc_la-eca-control-interface.lo
|
|
||||||
am_libecasoundc_la_OBJECTS = $(am__objects_1)
|
|
||||||
libecasoundc_la_OBJECTS = $(am_libecasoundc_la_OBJECTS)
|
|
||||||
am_libecasoundc_la_rpath = -rpath $(libdir)
|
|
||||||
am__DEPENDENCIES_1 =
|
|
||||||
libecasoundc_debug_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
|
|
||||||
am__objects_2 = libecasoundc_debug_la-ecasoundc_sa.lo \
|
|
||||||
libecasoundc_debug_la-eca-control-interface.lo
|
|
||||||
am__objects_3 = $(am__objects_2)
|
|
||||||
am_libecasoundc_debug_la_OBJECTS = $(am__objects_3)
|
|
||||||
libecasoundc_debug_la_OBJECTS = $(am_libecasoundc_debug_la_OBJECTS)
|
|
||||||
#am_libecasoundc_debug_la_rpath = -rpath \
|
|
||||||
# $(libdir)
|
|
||||||
am__EXEEXT_1 = libecasoundc_tester$(EXEEXT) ecicpp_tester$(EXEEXT)
|
|
||||||
am_ecicpp_tester_OBJECTS = ecicpp_tester.$(OBJEXT)
|
|
||||||
ecicpp_tester_OBJECTS = $(am_ecicpp_tester_OBJECTS)
|
|
||||||
am__DEPENDENCIES_2 = libecasoundc.la
|
|
||||||
#am__DEPENDENCIES_2 = libecasoundc_debug.la
|
|
||||||
ecicpp_tester_DEPENDENCIES = $(am__DEPENDENCIES_2)
|
|
||||||
am_libecasoundc_tester_OBJECTS = libecasoundc_tester.$(OBJEXT)
|
|
||||||
libecasoundc_tester_OBJECTS = $(am_libecasoundc_tester_OBJECTS)
|
|
||||||
libecasoundc_tester_DEPENDENCIES = $(am__DEPENDENCIES_2)
|
|
||||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
|
||||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
|
||||||
am__depfiles_maybe = depfiles
|
|
||||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
|
||||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
|
||||||
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
|
||||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
||||||
$(AM_CFLAGS) $(CFLAGS)
|
|
||||||
CCLD = $(CC)
|
|
||||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
|
||||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
||||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
|
||||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
|
||||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
|
|
||||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
||||||
$(AM_CXXFLAGS) $(CXXFLAGS)
|
|
||||||
CXXLD = $(CXX)
|
|
||||||
CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
|
||||||
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
||||||
SOURCES = $(libecasoundc_la_SOURCES) $(libecasoundc_debug_la_SOURCES) \
|
|
||||||
$(ecicpp_tester_SOURCES) $(libecasoundc_tester_SOURCES)
|
|
||||||
DIST_SOURCES = $(libecasoundc_la_SOURCES) \
|
|
||||||
$(libecasoundc_debug_la_SOURCES) $(ecicpp_tester_SOURCES) \
|
|
||||||
$(libecasoundc_tester_SOURCES)
|
|
||||||
HEADERS = $(noinst_HEADERS)
|
|
||||||
ETAGS = etags
|
|
||||||
CTAGS = ctags
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500 "-DTEST_TOP_BUILDDIR=\"$(top_builddir)\""
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
EXTRA_DIST = ChangeLog
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
|
||||||
eca_ldflags = -s -version-info 2:0:1 -static
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# defines
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
# !!!
|
|
||||||
# remember to update eca-version.cpp
|
|
||||||
#eca_ldflags = -version-info 2:0:1 -static
|
|
||||||
INCLUDES = -I$(srcdir)
|
|
||||||
lib_LTLIBRARIES = libecasoundc.la
|
|
||||||
# -I$(top_srcdir)/libecasound
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# build targets and compiler options target defines
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
#lib_LTLIBRARIES = libecasoundc_debug.la
|
|
||||||
TESTS = libecasoundc_tester ecicpp_tester
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# header files
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
ecasoundc_includes = ecasoundc.h \
|
|
||||||
eca-control-interface.h
|
|
||||||
|
|
||||||
noinst_HEADERS = $(ecasoundc_includes)
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# source files
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
# standalone implementation (forks and execs the ecasound binary)
|
|
||||||
ecasoundc_src = ecasoundc_sa.c \
|
|
||||||
eca-control-interface.cpp
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# library definitons
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
libecasoundc_la_SOURCES = $(ecasoundc_src)
|
|
||||||
libecasoundc_la_CFLAGS = -prefer-pic
|
|
||||||
libecasoundc_la_CXXFLAGS = -prefer-pic
|
|
||||||
libecasoundc_la_LIBADD =
|
|
||||||
libecasoundc_la_LDFLAGS = -export-dynamic $(eca_ldflags)
|
|
||||||
libecasoundc_debug_la_SOURCES = $(libecasoundc_la_SOURCES)
|
|
||||||
libecasoundc_debug_la_CFLAGS = $(libecasoundc_la_CFLAGS)
|
|
||||||
libecasoundc_debug_la_CXXFLAGS = $(libecasoundc_la_CXXFLAGS)
|
|
||||||
libecasoundc_debug_la_LIBADD = $(libecasoundc_la_LIBADD)
|
|
||||||
libecasoundc_debug_la_LDFLAGS = $(libecasoundc_la_LDFLAGS)
|
|
||||||
libecasoundc_tester_SOURCES = libecasoundc_tester.c
|
|
||||||
libecasoundc_tester_LDADD = $(lib_LTLIBRARIES)
|
|
||||||
ecicpp_tester_SOURCES = ecicpp_tester.cpp
|
|
||||||
ecicpp_tester_LDADD = $(lib_LTLIBRARIES)
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
.SUFFIXES: .c .cpp .lo .o .obj
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libecasoundc/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign libecasoundc/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
libecasoundc-config: $(top_builddir)/config.status $(srcdir)/libecasoundc-config.in
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
|
|
||||||
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
|
||||||
@$(NORMAL_INSTALL)
|
|
||||||
test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
|
|
||||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
|
||||||
if test -f $$p; then \
|
|
||||||
f=$(am__strip_dir) \
|
|
||||||
echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
|
|
||||||
$(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
|
|
||||||
else :; fi; \
|
|
||||||
done
|
|
||||||
|
|
||||||
uninstall-libLTLIBRARIES:
|
|
||||||
@$(NORMAL_UNINSTALL)
|
|
||||||
@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
|
||||||
p=$(am__strip_dir) \
|
|
||||||
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
|
|
||||||
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
|
|
||||||
done
|
|
||||||
|
|
||||||
clean-libLTLIBRARIES:
|
|
||||||
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
|
||||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
|
||||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
|
||||||
test "$$dir" != "$$p" || dir=.; \
|
|
||||||
echo "rm -f \"$${dir}/so_locations\""; \
|
|
||||||
rm -f "$${dir}/so_locations"; \
|
|
||||||
done
|
|
||||||
libecasoundc.la: $(libecasoundc_la_OBJECTS) $(libecasoundc_la_DEPENDENCIES)
|
|
||||||
$(CXXLINK) $(am_libecasoundc_la_rpath) $(libecasoundc_la_LDFLAGS) $(libecasoundc_la_OBJECTS) $(libecasoundc_la_LIBADD) $(LIBS)
|
|
||||||
libecasoundc_debug.la: $(libecasoundc_debug_la_OBJECTS) $(libecasoundc_debug_la_DEPENDENCIES)
|
|
||||||
$(CXXLINK) $(am_libecasoundc_debug_la_rpath) $(libecasoundc_debug_la_LDFLAGS) $(libecasoundc_debug_la_OBJECTS) $(libecasoundc_debug_la_LIBADD) $(LIBS)
|
|
||||||
|
|
||||||
clean-checkPROGRAMS:
|
|
||||||
@list='$(check_PROGRAMS)'; for p in $$list; do \
|
|
||||||
f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
|
||||||
echo " rm -f $$p $$f"; \
|
|
||||||
rm -f $$p $$f ; \
|
|
||||||
done
|
|
||||||
ecicpp_tester$(EXEEXT): $(ecicpp_tester_OBJECTS) $(ecicpp_tester_DEPENDENCIES)
|
|
||||||
@rm -f ecicpp_tester$(EXEEXT)
|
|
||||||
$(CXXLINK) $(ecicpp_tester_LDFLAGS) $(ecicpp_tester_OBJECTS) $(ecicpp_tester_LDADD) $(LIBS)
|
|
||||||
libecasoundc_tester$(EXEEXT): $(libecasoundc_tester_OBJECTS) $(libecasoundc_tester_DEPENDENCIES)
|
|
||||||
@rm -f libecasoundc_tester$(EXEEXT)
|
|
||||||
$(LINK) $(libecasoundc_tester_LDFLAGS) $(libecasoundc_tester_OBJECTS) $(libecasoundc_tester_LDADD) $(LIBS)
|
|
||||||
|
|
||||||
mostlyclean-compile:
|
|
||||||
-rm -f *.$(OBJEXT)
|
|
||||||
|
|
||||||
distclean-compile:
|
|
||||||
-rm -f *.tab.c
|
|
||||||
|
|
||||||
include ./$(DEPDIR)/ecicpp_tester.Po
|
|
||||||
include ./$(DEPDIR)/libecasoundc_debug_la-eca-control-interface.Plo
|
|
||||||
include ./$(DEPDIR)/libecasoundc_debug_la-ecasoundc_sa.Plo
|
|
||||||
include ./$(DEPDIR)/libecasoundc_la-eca-control-interface.Plo
|
|
||||||
include ./$(DEPDIR)/libecasoundc_la-ecasoundc_sa.Plo
|
|
||||||
include ./$(DEPDIR)/libecasoundc_tester.Po
|
|
||||||
|
|
||||||
.c.o:
|
|
||||||
if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(COMPILE) -c $<
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
|
||||||
|
|
||||||
.c.lo:
|
|
||||||
if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(LTCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
libecasoundc_la-ecasoundc_sa.lo: ecasoundc_sa.c
|
|
||||||
if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libecasoundc_la_CFLAGS) $(CFLAGS) -MT libecasoundc_la-ecasoundc_sa.lo -MD -MP -MF "$(DEPDIR)/libecasoundc_la-ecasoundc_sa.Tpo" -c -o libecasoundc_la-ecasoundc_sa.lo `test -f 'ecasoundc_sa.c' || echo '$(srcdir)/'`ecasoundc_sa.c; \
|
|
||||||
then mv -f "$(DEPDIR)/libecasoundc_la-ecasoundc_sa.Tpo" "$(DEPDIR)/libecasoundc_la-ecasoundc_sa.Plo"; else rm -f "$(DEPDIR)/libecasoundc_la-ecasoundc_sa.Tpo"; exit 1; fi
|
|
||||||
# source='ecasoundc_sa.c' object='libecasoundc_la-ecasoundc_sa.lo' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libecasoundc_la_CFLAGS) $(CFLAGS) -c -o libecasoundc_la-ecasoundc_sa.lo `test -f 'ecasoundc_sa.c' || echo '$(srcdir)/'`ecasoundc_sa.c
|
|
||||||
|
|
||||||
libecasoundc_debug_la-ecasoundc_sa.lo: ecasoundc_sa.c
|
|
||||||
if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libecasoundc_debug_la_CFLAGS) $(CFLAGS) -MT libecasoundc_debug_la-ecasoundc_sa.lo -MD -MP -MF "$(DEPDIR)/libecasoundc_debug_la-ecasoundc_sa.Tpo" -c -o libecasoundc_debug_la-ecasoundc_sa.lo `test -f 'ecasoundc_sa.c' || echo '$(srcdir)/'`ecasoundc_sa.c; \
|
|
||||||
then mv -f "$(DEPDIR)/libecasoundc_debug_la-ecasoundc_sa.Tpo" "$(DEPDIR)/libecasoundc_debug_la-ecasoundc_sa.Plo"; else rm -f "$(DEPDIR)/libecasoundc_debug_la-ecasoundc_sa.Tpo"; exit 1; fi
|
|
||||||
# source='ecasoundc_sa.c' object='libecasoundc_debug_la-ecasoundc_sa.lo' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libecasoundc_debug_la_CFLAGS) $(CFLAGS) -c -o libecasoundc_debug_la-ecasoundc_sa.lo `test -f 'ecasoundc_sa.c' || echo '$(srcdir)/'`ecasoundc_sa.c
|
|
||||||
|
|
||||||
.cpp.o:
|
|
||||||
if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(CXXCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
.cpp.obj:
|
|
||||||
if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
|
||||||
|
|
||||||
.cpp.lo:
|
|
||||||
if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(LTCXXCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
libecasoundc_la-eca-control-interface.lo: eca-control-interface.cpp
|
|
||||||
if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libecasoundc_la_CXXFLAGS) $(CXXFLAGS) -MT libecasoundc_la-eca-control-interface.lo -MD -MP -MF "$(DEPDIR)/libecasoundc_la-eca-control-interface.Tpo" -c -o libecasoundc_la-eca-control-interface.lo `test -f 'eca-control-interface.cpp' || echo '$(srcdir)/'`eca-control-interface.cpp; \
|
|
||||||
then mv -f "$(DEPDIR)/libecasoundc_la-eca-control-interface.Tpo" "$(DEPDIR)/libecasoundc_la-eca-control-interface.Plo"; else rm -f "$(DEPDIR)/libecasoundc_la-eca-control-interface.Tpo"; exit 1; fi
|
|
||||||
# source='eca-control-interface.cpp' object='libecasoundc_la-eca-control-interface.lo' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libecasoundc_la_CXXFLAGS) $(CXXFLAGS) -c -o libecasoundc_la-eca-control-interface.lo `test -f 'eca-control-interface.cpp' || echo '$(srcdir)/'`eca-control-interface.cpp
|
|
||||||
|
|
||||||
libecasoundc_debug_la-eca-control-interface.lo: eca-control-interface.cpp
|
|
||||||
if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libecasoundc_debug_la_CXXFLAGS) $(CXXFLAGS) -MT libecasoundc_debug_la-eca-control-interface.lo -MD -MP -MF "$(DEPDIR)/libecasoundc_debug_la-eca-control-interface.Tpo" -c -o libecasoundc_debug_la-eca-control-interface.lo `test -f 'eca-control-interface.cpp' || echo '$(srcdir)/'`eca-control-interface.cpp; \
|
|
||||||
then mv -f "$(DEPDIR)/libecasoundc_debug_la-eca-control-interface.Tpo" "$(DEPDIR)/libecasoundc_debug_la-eca-control-interface.Plo"; else rm -f "$(DEPDIR)/libecasoundc_debug_la-eca-control-interface.Tpo"; exit 1; fi
|
|
||||||
# source='eca-control-interface.cpp' object='libecasoundc_debug_la-eca-control-interface.lo' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) \
|
|
||||||
# $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libecasoundc_debug_la_CXXFLAGS) $(CXXFLAGS) -c -o libecasoundc_debug_la-eca-control-interface.lo `test -f 'eca-control-interface.cpp' || echo '$(srcdir)/'`eca-control-interface.cpp
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
|
|
||||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
mkid -fID $$unique
|
|
||||||
tags: TAGS
|
|
||||||
|
|
||||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
|
||||||
test -n "$$unique" || unique=$$empty_fix; \
|
|
||||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
||||||
$$tags $$unique; \
|
|
||||||
fi
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
|
||||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
||||||
$$tags $$unique
|
|
||||||
|
|
||||||
GTAGS:
|
|
||||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
||||||
&& cd $(top_srcdir) \
|
|
||||||
&& gtags -i $(GTAGS_ARGS) $$here
|
|
||||||
|
|
||||||
distclean-tags:
|
|
||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
||||||
|
|
||||||
check-TESTS: $(TESTS)
|
|
||||||
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
|
|
||||||
srcdir=$(srcdir); export srcdir; \
|
|
||||||
list='$(TESTS)'; \
|
|
||||||
if test -n "$$list"; then \
|
|
||||||
for tst in $$list; do \
|
|
||||||
if test -f ./$$tst; then dir=./; \
|
|
||||||
elif test -f $$tst; then dir=; \
|
|
||||||
else dir="$(srcdir)/"; fi; \
|
|
||||||
if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
|
|
||||||
all=`expr $$all + 1`; \
|
|
||||||
case " $(XFAIL_TESTS) " in \
|
|
||||||
*" $$tst "*) \
|
|
||||||
xpass=`expr $$xpass + 1`; \
|
|
||||||
failed=`expr $$failed + 1`; \
|
|
||||||
echo "XPASS: $$tst"; \
|
|
||||||
;; \
|
|
||||||
*) \
|
|
||||||
echo "PASS: $$tst"; \
|
|
||||||
;; \
|
|
||||||
esac; \
|
|
||||||
elif test $$? -ne 77; then \
|
|
||||||
all=`expr $$all + 1`; \
|
|
||||||
case " $(XFAIL_TESTS) " in \
|
|
||||||
*" $$tst "*) \
|
|
||||||
xfail=`expr $$xfail + 1`; \
|
|
||||||
echo "XFAIL: $$tst"; \
|
|
||||||
;; \
|
|
||||||
*) \
|
|
||||||
failed=`expr $$failed + 1`; \
|
|
||||||
echo "FAIL: $$tst"; \
|
|
||||||
;; \
|
|
||||||
esac; \
|
|
||||||
else \
|
|
||||||
skip=`expr $$skip + 1`; \
|
|
||||||
echo "SKIP: $$tst"; \
|
|
||||||
fi; \
|
|
||||||
done; \
|
|
||||||
if test "$$failed" -eq 0; then \
|
|
||||||
if test "$$xfail" -eq 0; then \
|
|
||||||
banner="All $$all tests passed"; \
|
|
||||||
else \
|
|
||||||
banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
|
|
||||||
fi; \
|
|
||||||
else \
|
|
||||||
if test "$$xpass" -eq 0; then \
|
|
||||||
banner="$$failed of $$all tests failed"; \
|
|
||||||
else \
|
|
||||||
banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
|
|
||||||
fi; \
|
|
||||||
fi; \
|
|
||||||
dashes="$$banner"; \
|
|
||||||
skipped=""; \
|
|
||||||
if test "$$skip" -ne 0; then \
|
|
||||||
skipped="($$skip tests were not run)"; \
|
|
||||||
test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
|
|
||||||
dashes="$$skipped"; \
|
|
||||||
fi; \
|
|
||||||
report=""; \
|
|
||||||
if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
|
|
||||||
report="Please report to $(PACKAGE_BUGREPORT)"; \
|
|
||||||
test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
|
|
||||||
dashes="$$report"; \
|
|
||||||
fi; \
|
|
||||||
dashes=`echo "$$dashes" | sed s/./=/g`; \
|
|
||||||
echo "$$dashes"; \
|
|
||||||
echo "$$banner"; \
|
|
||||||
test -z "$$skipped" || echo "$$skipped"; \
|
|
||||||
test -z "$$report" || echo "$$report"; \
|
|
||||||
echo "$$dashes"; \
|
|
||||||
test "$$failed" -eq 0; \
|
|
||||||
else :; fi
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile $(LTLIBRARIES) $(HEADERS)
|
|
||||||
installdirs:
|
|
||||||
for dir in "$(DESTDIR)$(libdir)"; do \
|
|
||||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
|
||||||
done
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
|
|
||||||
clean-libtool mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-compile distclean-generic \
|
|
||||||
distclean-libtool distclean-tags
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am: install-data-local
|
|
||||||
|
|
||||||
install-exec-am: install-libLTLIBRARIES
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
|
||||||
mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \
|
|
||||||
uninstall-local
|
|
||||||
|
|
||||||
.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
|
|
||||||
clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
|
|
||||||
clean-libtool ctags distclean distclean-compile \
|
|
||||||
distclean-generic distclean-libtool distclean-tags distdir dvi \
|
|
||||||
dvi-am html html-am info info-am install install-am \
|
|
||||||
install-data install-data-am install-data-local install-exec \
|
|
||||||
install-exec-am install-info install-info-am \
|
|
||||||
install-libLTLIBRARIES install-man install-strip installcheck \
|
|
||||||
installcheck-am installdirs maintainer-clean \
|
|
||||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
|
||||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
|
||||||
tags uninstall uninstall-am uninstall-info-am \
|
|
||||||
uninstall-libLTLIBRARIES uninstall-local
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Install targets
|
|
||||||
install-data-local:
|
|
||||||
$(INSTALL) -d $(DESTDIR)$(includedir)/libecasoundc
|
|
||||||
cd $(srcdir) ; \
|
|
||||||
$(INSTALL_DATA) $(ecasoundc_includes) \
|
|
||||||
$(DESTDIR)$(includedir)/libecasoundc
|
|
||||||
$(INSTALL) -d $(DESTDIR)$(bindir)
|
|
||||||
$(INSTALL_SCRIPT) libecasoundc-config $(DESTDIR)$(bindir)/
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------
|
|
||||||
# Uninstall targets
|
|
||||||
uninstall-local:
|
|
||||||
cd $(DESTDIR)$(includedir)/libecasoundc && \
|
|
||||||
rm -f $(ecasoundc_includes)
|
|
||||||
rmdir $(DESTDIR)$(includedir)/libecasoundc || echo "Skipping non-empty directory"
|
|
||||||
rm -f $(DESTDIR)$(bindir)/libecasoundc-config
|
|
||||||
rmdir $(DESTDIR)$(bindir) || echo "Skipping non-empty directory"
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
|
@ -1,58 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
usage()
|
|
||||||
{
|
|
||||||
echo "usage: $0 [OPTIONS]"
|
|
||||||
cat << EOH
|
|
||||||
|
|
||||||
options:
|
|
||||||
[--libs]
|
|
||||||
[--libs_debug]
|
|
||||||
[--cflags]
|
|
||||||
[--version]
|
|
||||||
EOH
|
|
||||||
exit 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
prefix=/usr/local
|
|
||||||
exec_prefix=${prefix}
|
|
||||||
libdir=${exec_prefix}/lib
|
|
||||||
includedir=${prefix}/include
|
|
||||||
|
|
||||||
flags=""
|
|
||||||
|
|
||||||
while test $# -gt 0
|
|
||||||
do
|
|
||||||
case $1 in
|
|
||||||
--libs)
|
|
||||||
flags="$flags -L$libdir -lecasoundc"
|
|
||||||
;;
|
|
||||||
--libs_debug)
|
|
||||||
flags="$flags -L$libdir -lecasoundc_debug"
|
|
||||||
;;
|
|
||||||
--ldflags)
|
|
||||||
case "$libdir" in
|
|
||||||
/usr/lib);;
|
|
||||||
*)
|
|
||||||
flags="$flags -Wl,--rpath -Wl,$libdir" ;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
--cflags)
|
|
||||||
flags="$flags -I$includedir/libecasoundc"
|
|
||||||
;;
|
|
||||||
--version)
|
|
||||||
echo 2.7.2
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "$0: unknown option $1"
|
|
||||||
echo
|
|
||||||
usage
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
if test -n "$flags"
|
|
||||||
then
|
|
||||||
echo $flags
|
|
||||||
fi
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,640 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# pyecasound/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/pyecasound/Makefile.am
|
|
||||||
# Description: Python implmentation of the Ecasound Control Interface
|
|
||||||
# License: LGPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
subdir = pyecasound
|
|
||||||
DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
|
|
||||||
$(srcdir)/Makefile.in ChangeLog TODO
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
LTLIBRARIES = $(noinst_LTLIBRARIES)
|
|
||||||
libpyecasound_la_LIBADD =
|
|
||||||
am_libpyecasound_la_OBJECTS = pyecasound.lo
|
|
||||||
libpyecasound_la_OBJECTS = $(am_libpyecasound_la_OBJECTS)
|
|
||||||
#am_libpyecasound_la_rpath =
|
|
||||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
|
|
||||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
|
||||||
am__depfiles_maybe = depfiles
|
|
||||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
|
||||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
|
||||||
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
|
||||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
||||||
$(AM_CFLAGS) $(CFLAGS)
|
|
||||||
CCLD = $(CC)
|
|
||||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
|
||||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
||||||
SOURCES = $(libpyecasound_la_SOURCES)
|
|
||||||
DIST_SOURCES = $(libpyecasound_la_SOURCES)
|
|
||||||
HEADERS = $(noinst_HEADERS)
|
|
||||||
ETAGS = etags
|
|
||||||
CTAGS = ctags
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
|
||||||
EXTRA_DIST = eci.py pyeca.py ecacontrol.py \
|
|
||||||
test1_stresstest.py \
|
|
||||||
test2_stresstest.py
|
|
||||||
|
|
||||||
ecasoundc_libs = ${top_builddir}/libecasoundc/libecasoundc.la
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# defines
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
#ecasoundc_libs = ${top_builddir}/libecasoundc/libecasoundc_debug.la
|
|
||||||
pyecasound_install_list1 = $(srcdir)/eci.py \
|
|
||||||
$(srcdir)/pyeca.py \
|
|
||||||
$(srcdir)/ecacontrol.py
|
|
||||||
|
|
||||||
pyecasound_uninstall_list1 = $(DESTDIR)$(ECA_S_PYTHON_DLMODULES)/eci.py \
|
|
||||||
$(DESTDIR)$(ECA_S_PYTHON_DLMODULES)/pyeca.py \
|
|
||||||
$(DESTDIR)$(ECA_S_PYTHON_DLMODULES)/ecacontrol.py
|
|
||||||
|
|
||||||
#pyecasound_install_list2 = pyecasound.so
|
|
||||||
#pyecasound_uninstall_list2 = $(DESTDIR)$(ECA_S_PYTHON_DLMODULES)/pyecasound.so
|
|
||||||
INCLUDES = -I$(srcdir) \
|
|
||||||
-I$(top_srcdir)/libecasoundc \
|
|
||||||
-I$(ECA_S_PYTHON_INCLUDES)
|
|
||||||
|
|
||||||
TESTS = test1_stresstest.py \
|
|
||||||
test2_stresstest.py
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# header files
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
pyecasound_includes = pyecasound.h
|
|
||||||
noinst_HEADERS = $(pyecasound_includes)
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# source files
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
#noinst_LTLIBRARIES = libpyecasound.la
|
|
||||||
libpyecasound_la_SOURCES = pyecasound.c
|
|
||||||
|
|
||||||
# libtool options to build for dlopen
|
|
||||||
libpyecasound_la_LDFLAGS = -avoid-version -export-dynamic
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# hooks
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
#CLEANFILES = pyecasound.so
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
.SUFFIXES: .c .lo .o .obj
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pyecasound/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign pyecasound/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
clean-noinstLTLIBRARIES:
|
|
||||||
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
|
||||||
@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
|
|
||||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
|
||||||
test "$$dir" != "$$p" || dir=.; \
|
|
||||||
echo "rm -f \"$${dir}/so_locations\""; \
|
|
||||||
rm -f "$${dir}/so_locations"; \
|
|
||||||
done
|
|
||||||
libpyecasound.la: $(libpyecasound_la_OBJECTS) $(libpyecasound_la_DEPENDENCIES)
|
|
||||||
$(LINK) $(am_libpyecasound_la_rpath) $(libpyecasound_la_LDFLAGS) $(libpyecasound_la_OBJECTS) $(libpyecasound_la_LIBADD) $(LIBS)
|
|
||||||
|
|
||||||
mostlyclean-compile:
|
|
||||||
-rm -f *.$(OBJEXT)
|
|
||||||
|
|
||||||
distclean-compile:
|
|
||||||
-rm -f *.tab.c
|
|
||||||
|
|
||||||
include ./$(DEPDIR)/pyecasound.Plo
|
|
||||||
|
|
||||||
.c.o:
|
|
||||||
if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(COMPILE) -c $<
|
|
||||||
|
|
||||||
.c.obj:
|
|
||||||
if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=no \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
|
||||||
|
|
||||||
.c.lo:
|
|
||||||
if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
|
||||||
then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
|
||||||
# source='$<' object='$@' libtool=yes \
|
|
||||||
# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \
|
|
||||||
# $(LTCOMPILE) -c -o $@ $<
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
|
|
||||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
mkid -fID $$unique
|
|
||||||
tags: TAGS
|
|
||||||
|
|
||||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
|
||||||
test -n "$$unique" || unique=$$empty_fix; \
|
|
||||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
||||||
$$tags $$unique; \
|
|
||||||
fi
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
||||||
$(TAGS_FILES) $(LISP)
|
|
||||||
tags=; \
|
|
||||||
here=`pwd`; \
|
|
||||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
|
||||||
unique=`for i in $$list; do \
|
|
||||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
||||||
done | \
|
|
||||||
$(AWK) ' { files[$$0] = 1; } \
|
|
||||||
END { for (i in files) print i; }'`; \
|
|
||||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
|
||||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
||||||
$$tags $$unique
|
|
||||||
|
|
||||||
GTAGS:
|
|
||||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
||||||
&& cd $(top_srcdir) \
|
|
||||||
&& gtags -i $(GTAGS_ARGS) $$here
|
|
||||||
|
|
||||||
distclean-tags:
|
|
||||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
||||||
|
|
||||||
check-TESTS: $(TESTS)
|
|
||||||
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
|
|
||||||
srcdir=$(srcdir); export srcdir; \
|
|
||||||
list='$(TESTS)'; \
|
|
||||||
if test -n "$$list"; then \
|
|
||||||
for tst in $$list; do \
|
|
||||||
if test -f ./$$tst; then dir=./; \
|
|
||||||
elif test -f $$tst; then dir=; \
|
|
||||||
else dir="$(srcdir)/"; fi; \
|
|
||||||
if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
|
|
||||||
all=`expr $$all + 1`; \
|
|
||||||
case " $(XFAIL_TESTS) " in \
|
|
||||||
*" $$tst "*) \
|
|
||||||
xpass=`expr $$xpass + 1`; \
|
|
||||||
failed=`expr $$failed + 1`; \
|
|
||||||
echo "XPASS: $$tst"; \
|
|
||||||
;; \
|
|
||||||
*) \
|
|
||||||
echo "PASS: $$tst"; \
|
|
||||||
;; \
|
|
||||||
esac; \
|
|
||||||
elif test $$? -ne 77; then \
|
|
||||||
all=`expr $$all + 1`; \
|
|
||||||
case " $(XFAIL_TESTS) " in \
|
|
||||||
*" $$tst "*) \
|
|
||||||
xfail=`expr $$xfail + 1`; \
|
|
||||||
echo "XFAIL: $$tst"; \
|
|
||||||
;; \
|
|
||||||
*) \
|
|
||||||
failed=`expr $$failed + 1`; \
|
|
||||||
echo "FAIL: $$tst"; \
|
|
||||||
;; \
|
|
||||||
esac; \
|
|
||||||
else \
|
|
||||||
skip=`expr $$skip + 1`; \
|
|
||||||
echo "SKIP: $$tst"; \
|
|
||||||
fi; \
|
|
||||||
done; \
|
|
||||||
if test "$$failed" -eq 0; then \
|
|
||||||
if test "$$xfail" -eq 0; then \
|
|
||||||
banner="All $$all tests passed"; \
|
|
||||||
else \
|
|
||||||
banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
|
|
||||||
fi; \
|
|
||||||
else \
|
|
||||||
if test "$$xpass" -eq 0; then \
|
|
||||||
banner="$$failed of $$all tests failed"; \
|
|
||||||
else \
|
|
||||||
banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
|
|
||||||
fi; \
|
|
||||||
fi; \
|
|
||||||
dashes="$$banner"; \
|
|
||||||
skipped=""; \
|
|
||||||
if test "$$skip" -ne 0; then \
|
|
||||||
skipped="($$skip tests were not run)"; \
|
|
||||||
test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
|
|
||||||
dashes="$$skipped"; \
|
|
||||||
fi; \
|
|
||||||
report=""; \
|
|
||||||
if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
|
|
||||||
report="Please report to $(PACKAGE_BUGREPORT)"; \
|
|
||||||
test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
|
|
||||||
dashes="$$report"; \
|
|
||||||
fi; \
|
|
||||||
dashes=`echo "$$dashes" | sed s/./=/g`; \
|
|
||||||
echo "$$dashes"; \
|
|
||||||
echo "$$banner"; \
|
|
||||||
test -z "$$skipped" || echo "$$skipped"; \
|
|
||||||
test -z "$$report" || echo "$$report"; \
|
|
||||||
echo "$$dashes"; \
|
|
||||||
test "$$failed" -eq 0; \
|
|
||||||
else :; fi
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile $(LTLIBRARIES) $(HEADERS)
|
|
||||||
installdirs:
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
|
||||||
mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-compile distclean-generic \
|
|
||||||
distclean-libtool distclean-tags
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am:
|
|
||||||
|
|
||||||
install-exec-am:
|
|
||||||
@$(NORMAL_INSTALL)
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) install-exec-hook
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -rf ./$(DEPDIR)
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
|
||||||
mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am uninstall-local
|
|
||||||
|
|
||||||
.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
|
|
||||||
clean-generic clean-libtool clean-noinstLTLIBRARIES ctags \
|
|
||||||
distclean distclean-compile distclean-generic \
|
|
||||||
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
|
||||||
html-am info info-am install install-am install-data \
|
|
||||||
install-data-am install-exec install-exec-am install-exec-hook \
|
|
||||||
install-info install-info-am install-man install-strip \
|
|
||||||
installcheck installcheck-am installdirs maintainer-clean \
|
|
||||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
|
||||||
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
|
||||||
tags uninstall uninstall-am uninstall-info-am uninstall-local
|
|
||||||
|
|
||||||
|
|
||||||
#all: pyecasound.so
|
|
||||||
|
|
||||||
#pyecasound.so: pyecasound.lo
|
|
||||||
# $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) ${libpyecasound_la_LDFLAGS} -shared -nostartfiles -o pyecasound.so pyecasound.lo $(ecasoundc_libs)
|
|
||||||
|
|
||||||
install-exec-hook: $(pyecasound_install_list1) $(pyecasound_install_list2)
|
|
||||||
$(INSTALL) -d $(DESTDIR)$(ECA_S_PYTHON_DLMODULES)
|
|
||||||
$(INSTALL) $(pyecasound_install_list1) $(pyecasound_install_list2) $(DESTDIR)$(ECA_S_PYTHON_DLMODULES)
|
|
||||||
#install-exec-hook:
|
|
||||||
|
|
||||||
uninstall-local:
|
|
||||||
rm -f $(pyecasound_uninstall_list1) $(pyecasound_uninstall_list2)
|
|
||||||
rmdir $(DESTDIR)$(ECA_S_PYTHON_DLMODULES) || echo "Skipping non-empty directory"
|
|
||||||
#uninstall-local:
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
|
@ -1,500 +0,0 @@
|
||||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
|
||||||
# rubyecasound/Makefile. Generated from Makefile.in by configure.
|
|
||||||
|
|
||||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
||||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
||||||
# This Makefile.in is free software; the Free Software Foundation
|
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
|
||||||
# with or without modifications, as long as this notice is preserved.
|
|
||||||
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
||||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
||||||
# PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# File: ecasound/pyecasound/Makefile.am
|
|
||||||
# Description: Ruby implmentation of the Ecasound Control Interface
|
|
||||||
# License: LGPL (see ecasound/{AUTHORS,COPYING})
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
srcdir = .
|
|
||||||
top_srcdir = ..
|
|
||||||
|
|
||||||
pkgdatadir = $(datadir)/ecasound
|
|
||||||
pkglibdir = $(libdir)/ecasound
|
|
||||||
pkgincludedir = $(includedir)/ecasound
|
|
||||||
top_builddir = ..
|
|
||||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
||||||
INSTALL = /usr/bin/install -c
|
|
||||||
install_sh_DATA = $(install_sh) -c -m 644
|
|
||||||
install_sh_PROGRAM = $(install_sh) -c
|
|
||||||
install_sh_SCRIPT = $(install_sh) -c
|
|
||||||
INSTALL_HEADER = $(INSTALL_DATA)
|
|
||||||
transform = $(program_transform_name)
|
|
||||||
NORMAL_INSTALL = :
|
|
||||||
PRE_INSTALL = :
|
|
||||||
POST_INSTALL = :
|
|
||||||
NORMAL_UNINSTALL = :
|
|
||||||
PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = x86_64-unknown-linux-gnu
|
|
||||||
host_triplet = x86_64-unknown-linux-gnu
|
|
||||||
subdir = rubyecasound
|
|
||||||
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
|
||||||
$(top_srcdir)/configure.in
|
|
||||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
||||||
$(ACLOCAL_M4)
|
|
||||||
mkinstalldirs = $(install_sh) -d
|
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
|
||||||
CONFIG_CLEAN_FILES =
|
|
||||||
SOURCES =
|
|
||||||
DIST_SOURCES =
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
||||||
ACLOCAL = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run aclocal-1.9
|
|
||||||
AMDEP_FALSE = #
|
|
||||||
AMDEP_TRUE =
|
|
||||||
AMTAR = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run tar
|
|
||||||
AM_CFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_CPPFLAGS = -D_REENTRANT -D_XOPEN_SOURCE=500
|
|
||||||
AM_CXXFLAGS = -ffast-math -fstrict-aliasing -DNDEBUG -DENABLE_DBC
|
|
||||||
AM_LDFLAGS =
|
|
||||||
AR = ar
|
|
||||||
ARTSC_CONFIG = none
|
|
||||||
AUTOCONF = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoconf
|
|
||||||
AUTOHEADER = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run autoheader
|
|
||||||
AUTOMAKE = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run automake-1.9
|
|
||||||
AWK = gawk
|
|
||||||
CC = gcc
|
|
||||||
CCDEPMODE = depmode=gcc3
|
|
||||||
CFLAGS = -g -O2
|
|
||||||
CPP = gcc -E
|
|
||||||
CPPFLAGS =
|
|
||||||
CXX = g++
|
|
||||||
CXXCPP = g++ -E
|
|
||||||
CXXDEPMODE = depmode=gcc3
|
|
||||||
CXXFLAGS = -g -O2
|
|
||||||
CYGPATH_W = echo
|
|
||||||
DEFS = -DHAVE_CONFIG_H
|
|
||||||
DEPDIR = .deps
|
|
||||||
DSYMUTIL =
|
|
||||||
ECA_AM_ALL_STATIC_FALSE =
|
|
||||||
ECA_AM_ALL_STATIC_TRUE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_FALSE = #
|
|
||||||
ECA_AM_COMPILE_ALSA_TRUE =
|
|
||||||
ECA_AM_COMPILE_ARTS_FALSE =
|
|
||||||
ECA_AM_COMPILE_ARTS_TRUE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_AUDIOFILE_TRUE =
|
|
||||||
ECA_AM_COMPILE_JACK_FALSE =
|
|
||||||
ECA_AM_COMPILE_JACK_TRUE = #
|
|
||||||
ECA_AM_COMPILE_OSS_FALSE = #
|
|
||||||
ECA_AM_COMPILE_OSS_TRUE =
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SAMPLERATE_TRUE =
|
|
||||||
ECA_AM_COMPILE_SNDFILE_FALSE = #
|
|
||||||
ECA_AM_COMPILE_SNDFILE_TRUE =
|
|
||||||
ECA_AM_DEBUG_MODE_FALSE =
|
|
||||||
ECA_AM_DEBUG_MODE_TRUE = #
|
|
||||||
ECA_AM_DISABLE_EFFECTS_FALSE =
|
|
||||||
ECA_AM_DISABLE_EFFECTS_TRUE = #
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_FALSE =
|
|
||||||
ECA_AM_FEELING_EXPERIMENTAL_TRUE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_FALSE = #
|
|
||||||
ECA_AM_KVUTILS_INSTALLED_TRUE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_FALSE =
|
|
||||||
ECA_AM_PYECASOUND_CEXT_TRUE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_FALSE = #
|
|
||||||
ECA_AM_PYECASOUND_INSTALL_TRUE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_FALSE =
|
|
||||||
ECA_AM_RUBYECASOUND_INSTALL_TRUE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_FALSE = #
|
|
||||||
ECA_AM_SYSTEM_READLINE_TRUE =
|
|
||||||
ECA_AM_USE_NCURSES_FALSE = #
|
|
||||||
ECA_AM_USE_NCURSES_TRUE =
|
|
||||||
ECA_AM_USE_TERMCAP_FALSE =
|
|
||||||
ECA_AM_USE_TERMCAP_TRUE = #
|
|
||||||
ECA_S_EXTRA_CPPFLAGS =
|
|
||||||
ECA_S_EXTRA_LIBS = -lsamplerate -laudiofile -lsndfile -lasound
|
|
||||||
ECA_S_JACK_INCLUDES =
|
|
||||||
ECA_S_JACK_LIBS =
|
|
||||||
ECA_S_PREFIX = /usr/local
|
|
||||||
ECA_S_PYTHON_DLMODULES = /usr/lib/python2.6/lib-dynload
|
|
||||||
ECA_S_PYTHON_INCLUDES =
|
|
||||||
ECA_S_PYTHON_MODULES = /usr/lib/python2.6
|
|
||||||
ECA_S_READLINE_INCLUDES = /usr/include/readline
|
|
||||||
ECA_S_READLINE_LIBS = -lreadline -lhistory
|
|
||||||
ECA_S_RUBY_SITEDIR =
|
|
||||||
ECHO = echo
|
|
||||||
ECHO_C =
|
|
||||||
ECHO_N = -n
|
|
||||||
ECHO_T =
|
|
||||||
EGREP = /bin/grep -E
|
|
||||||
EXEEXT =
|
|
||||||
F77 =
|
|
||||||
FFLAGS =
|
|
||||||
GREP = /bin/grep
|
|
||||||
INSTALL_DATA = ${INSTALL} -m 644
|
|
||||||
INSTALL_PROGRAM = ${INSTALL}
|
|
||||||
INSTALL_SCRIPT = ${INSTALL}
|
|
||||||
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
|
|
||||||
LDFLAGS =
|
|
||||||
LIBECASOUNDC_VERSION = 2
|
|
||||||
LIBECASOUNDC_VERSION_AGE = 1
|
|
||||||
LIBECASOUND_VERSION = 22
|
|
||||||
LIBECASOUND_VERSION_AGE = 0
|
|
||||||
LIBKVUTILS_VERSION = 9
|
|
||||||
LIBKVUTILS_VERSION_AGE = 5
|
|
||||||
LIBLO_CFLAGS =
|
|
||||||
LIBLO_LIBS =
|
|
||||||
LIBOBJS =
|
|
||||||
LIBOIL_CFLAGS =
|
|
||||||
LIBOIL_LIBS =
|
|
||||||
LIBS = -ldl -lm -lrt -lpthread
|
|
||||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
|
|
||||||
LN_S = ln -s
|
|
||||||
LTLIBOBJS =
|
|
||||||
MAKEINFO = ${SHELL} /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/missing --run makeinfo
|
|
||||||
NMEDIT =
|
|
||||||
OBJEXT = o
|
|
||||||
PACKAGE = ecasound
|
|
||||||
PACKAGE_BUGREPORT =
|
|
||||||
PACKAGE_NAME = ecasound
|
|
||||||
PACKAGE_STRING = ecasound 2.7.2
|
|
||||||
PACKAGE_TARNAME = ecasound
|
|
||||||
PACKAGE_VERSION = 2.7.2
|
|
||||||
PATH_SEPARATOR = :
|
|
||||||
PKG_CONFIG = /usr/bin/pkg-config
|
|
||||||
PYTHONPATH = /usr/bin/python
|
|
||||||
RANLIB = ranlib
|
|
||||||
RUBYPATH = none
|
|
||||||
SED = /bin/sed
|
|
||||||
SET_MAKE =
|
|
||||||
SHELL = /bin/bash
|
|
||||||
STRIP = strip
|
|
||||||
VERSION = 2.7.2
|
|
||||||
ac_ct_CC = gcc
|
|
||||||
ac_ct_CXX = g++
|
|
||||||
ac_ct_F77 =
|
|
||||||
am__fastdepCC_FALSE = #
|
|
||||||
am__fastdepCC_TRUE =
|
|
||||||
am__fastdepCXX_FALSE = #
|
|
||||||
am__fastdepCXX_TRUE =
|
|
||||||
am__include = include
|
|
||||||
am__leading_dot = .
|
|
||||||
am__quote =
|
|
||||||
am__tar = ${AMTAR} chof - "$$tardir"
|
|
||||||
am__untar = ${AMTAR} xf -
|
|
||||||
bindir = ${exec_prefix}/bin
|
|
||||||
build = x86_64-unknown-linux-gnu
|
|
||||||
build_alias =
|
|
||||||
build_cpu = x86_64
|
|
||||||
build_os = linux-gnu
|
|
||||||
build_vendor = unknown
|
|
||||||
datadir = ${datarootdir}
|
|
||||||
datarootdir = ${prefix}/share
|
|
||||||
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
|
||||||
dvidir = ${docdir}
|
|
||||||
exec_prefix = ${prefix}
|
|
||||||
host = x86_64-unknown-linux-gnu
|
|
||||||
host_alias =
|
|
||||||
host_cpu = x86_64
|
|
||||||
host_os = linux-gnu
|
|
||||||
host_vendor = unknown
|
|
||||||
htmldir = ${docdir}
|
|
||||||
includedir = ${prefix}/include
|
|
||||||
infodir = ${datarootdir}/info
|
|
||||||
install_sh = /home/naomi/dev-campcaster/campcaster/ecasound-2.7.2/install-sh
|
|
||||||
libdir = ${exec_prefix}/lib
|
|
||||||
libexecdir = ${exec_prefix}/libexec
|
|
||||||
localedir = ${datarootdir}/locale
|
|
||||||
localstatedir = ${prefix}/var
|
|
||||||
mandir = ${datarootdir}/man
|
|
||||||
mkdir_p = mkdir -p --
|
|
||||||
oldincludedir = /usr/include
|
|
||||||
pdfdir = ${docdir}
|
|
||||||
prefix = /usr/local
|
|
||||||
program_transform_name = s,x,x,
|
|
||||||
psdir = ${docdir}
|
|
||||||
sbindir = ${exec_prefix}/sbin
|
|
||||||
sharedstatedir = ${prefix}/com
|
|
||||||
sysconfdir = ${prefix}/etc
|
|
||||||
target_alias =
|
|
||||||
AUTOMAKE_OPTIONS = foreign
|
|
||||||
EXTRA_DIST = README \
|
|
||||||
ecasound.rb \
|
|
||||||
stresstest.rb
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# defines
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
#rubyecasound_install_list1 = $(srcdir)/ecasound.rb
|
|
||||||
#rubyecasound_uninstall_list1 = $(DESTDIR)$(ECA_S_RUBY_SITEDIR)/ecasound.rb
|
|
||||||
#TESTS = stresstest.rb
|
|
||||||
all: all-am
|
|
||||||
|
|
||||||
.SUFFIXES:
|
|
||||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
|
||||||
@for dep in $?; do \
|
|
||||||
case '$(am__configure_deps)' in \
|
|
||||||
*$$dep*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
|
||||||
&& exit 0; \
|
|
||||||
exit 1;; \
|
|
||||||
esac; \
|
|
||||||
done; \
|
|
||||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign rubyecasound/Makefile'; \
|
|
||||||
cd $(top_srcdir) && \
|
|
||||||
$(AUTOMAKE) --foreign rubyecasound/Makefile
|
|
||||||
.PRECIOUS: Makefile
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
||||||
@case '$?' in \
|
|
||||||
*config.status*) \
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
||||||
*) \
|
|
||||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
||||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
||||||
esac;
|
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
$(top_srcdir)/configure: $(am__configure_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
|
||||||
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
||||||
|
|
||||||
mostlyclean-libtool:
|
|
||||||
-rm -f *.lo
|
|
||||||
|
|
||||||
clean-libtool:
|
|
||||||
-rm -rf .libs _libs
|
|
||||||
|
|
||||||
distclean-libtool:
|
|
||||||
-rm -f libtool
|
|
||||||
uninstall-info-am:
|
|
||||||
tags: TAGS
|
|
||||||
TAGS:
|
|
||||||
|
|
||||||
ctags: CTAGS
|
|
||||||
CTAGS:
|
|
||||||
|
|
||||||
|
|
||||||
check-TESTS: $(TESTS)
|
|
||||||
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
|
|
||||||
srcdir=$(srcdir); export srcdir; \
|
|
||||||
list='$(TESTS)'; \
|
|
||||||
if test -n "$$list"; then \
|
|
||||||
for tst in $$list; do \
|
|
||||||
if test -f ./$$tst; then dir=./; \
|
|
||||||
elif test -f $$tst; then dir=; \
|
|
||||||
else dir="$(srcdir)/"; fi; \
|
|
||||||
if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
|
|
||||||
all=`expr $$all + 1`; \
|
|
||||||
case " $(XFAIL_TESTS) " in \
|
|
||||||
*" $$tst "*) \
|
|
||||||
xpass=`expr $$xpass + 1`; \
|
|
||||||
failed=`expr $$failed + 1`; \
|
|
||||||
echo "XPASS: $$tst"; \
|
|
||||||
;; \
|
|
||||||
*) \
|
|
||||||
echo "PASS: $$tst"; \
|
|
||||||
;; \
|
|
||||||
esac; \
|
|
||||||
elif test $$? -ne 77; then \
|
|
||||||
all=`expr $$all + 1`; \
|
|
||||||
case " $(XFAIL_TESTS) " in \
|
|
||||||
*" $$tst "*) \
|
|
||||||
xfail=`expr $$xfail + 1`; \
|
|
||||||
echo "XFAIL: $$tst"; \
|
|
||||||
;; \
|
|
||||||
*) \
|
|
||||||
failed=`expr $$failed + 1`; \
|
|
||||||
echo "FAIL: $$tst"; \
|
|
||||||
;; \
|
|
||||||
esac; \
|
|
||||||
else \
|
|
||||||
skip=`expr $$skip + 1`; \
|
|
||||||
echo "SKIP: $$tst"; \
|
|
||||||
fi; \
|
|
||||||
done; \
|
|
||||||
if test "$$failed" -eq 0; then \
|
|
||||||
if test "$$xfail" -eq 0; then \
|
|
||||||
banner="All $$all tests passed"; \
|
|
||||||
else \
|
|
||||||
banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
|
|
||||||
fi; \
|
|
||||||
else \
|
|
||||||
if test "$$xpass" -eq 0; then \
|
|
||||||
banner="$$failed of $$all tests failed"; \
|
|
||||||
else \
|
|
||||||
banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
|
|
||||||
fi; \
|
|
||||||
fi; \
|
|
||||||
dashes="$$banner"; \
|
|
||||||
skipped=""; \
|
|
||||||
if test "$$skip" -ne 0; then \
|
|
||||||
skipped="($$skip tests were not run)"; \
|
|
||||||
test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
|
|
||||||
dashes="$$skipped"; \
|
|
||||||
fi; \
|
|
||||||
report=""; \
|
|
||||||
if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
|
|
||||||
report="Please report to $(PACKAGE_BUGREPORT)"; \
|
|
||||||
test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
|
|
||||||
dashes="$$report"; \
|
|
||||||
fi; \
|
|
||||||
dashes=`echo "$$dashes" | sed s/./=/g`; \
|
|
||||||
echo "$$dashes"; \
|
|
||||||
echo "$$banner"; \
|
|
||||||
test -z "$$skipped" || echo "$$skipped"; \
|
|
||||||
test -z "$$report" || echo "$$report"; \
|
|
||||||
echo "$$dashes"; \
|
|
||||||
test "$$failed" -eq 0; \
|
|
||||||
else :; fi
|
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
|
||||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
|
||||||
list='$(DISTFILES)'; for file in $$list; do \
|
|
||||||
case $$file in \
|
|
||||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
|
||||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
|
||||||
esac; \
|
|
||||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
||||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
||||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
|
||||||
dir="/$$dir"; \
|
|
||||||
$(mkdir_p) "$(distdir)$$dir"; \
|
|
||||||
else \
|
|
||||||
dir=''; \
|
|
||||||
fi; \
|
|
||||||
if test -d $$d/$$file; then \
|
|
||||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
||||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
fi; \
|
|
||||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
|
||||||
else \
|
|
||||||
test -f $(distdir)/$$file \
|
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
|
||||||
|| exit 1; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
check-am: all-am
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
|
|
||||||
check: check-am
|
|
||||||
all-am: Makefile
|
|
||||||
installdirs:
|
|
||||||
install: install-am
|
|
||||||
install-exec: install-exec-am
|
|
||||||
install-data: install-data-am
|
|
||||||
uninstall: uninstall-am
|
|
||||||
|
|
||||||
install-am: all-am
|
|
||||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
||||||
|
|
||||||
installcheck: installcheck-am
|
|
||||||
install-strip:
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
||||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
||||||
`test -z '$(STRIP)' || \
|
|
||||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
|
||||||
mostlyclean-generic:
|
|
||||||
|
|
||||||
clean-generic:
|
|
||||||
|
|
||||||
distclean-generic:
|
|
||||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
||||||
|
|
||||||
maintainer-clean-generic:
|
|
||||||
@echo "This command is intended for maintainers to use"
|
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
|
||||||
clean: clean-am
|
|
||||||
|
|
||||||
clean-am: clean-generic clean-libtool clean-local mostlyclean-am
|
|
||||||
|
|
||||||
distclean: distclean-am
|
|
||||||
-rm -f Makefile
|
|
||||||
distclean-am: clean-am distclean-generic distclean-libtool
|
|
||||||
|
|
||||||
dvi: dvi-am
|
|
||||||
|
|
||||||
dvi-am:
|
|
||||||
|
|
||||||
html: html-am
|
|
||||||
|
|
||||||
info: info-am
|
|
||||||
|
|
||||||
info-am:
|
|
||||||
|
|
||||||
install-data-am:
|
|
||||||
|
|
||||||
install-exec-am:
|
|
||||||
@$(NORMAL_INSTALL)
|
|
||||||
$(MAKE) $(AM_MAKEFLAGS) install-exec-hook
|
|
||||||
|
|
||||||
install-info: install-info-am
|
|
||||||
|
|
||||||
install-man:
|
|
||||||
|
|
||||||
installcheck-am:
|
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-am
|
|
||||||
-rm -f Makefile
|
|
||||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
||||||
|
|
||||||
mostlyclean: mostlyclean-am
|
|
||||||
|
|
||||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
|
||||||
|
|
||||||
pdf: pdf-am
|
|
||||||
|
|
||||||
pdf-am:
|
|
||||||
|
|
||||||
ps: ps-am
|
|
||||||
|
|
||||||
ps-am:
|
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am uninstall-local
|
|
||||||
|
|
||||||
.PHONY: all all-am check check-TESTS check-am clean clean-generic \
|
|
||||||
clean-libtool clean-local distclean distclean-generic \
|
|
||||||
distclean-libtool distdir dvi dvi-am html html-am info info-am \
|
|
||||||
install install-am install-data install-data-am install-exec \
|
|
||||||
install-exec-am install-exec-hook install-info install-info-am \
|
|
||||||
install-man install-strip installcheck installcheck-am \
|
|
||||||
installdirs maintainer-clean maintainer-clean-generic \
|
|
||||||
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
|
||||||
ps ps-am uninstall uninstall-am uninstall-info-am \
|
|
||||||
uninstall-local
|
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
# hooks
|
|
||||||
# ----------------------------------------------------------------------
|
|
||||||
|
|
||||||
# unit test requires "ecasound.rb" in the build directory
|
|
||||||
stresstest.rb: ecasound.rb-STAMP
|
|
||||||
ecasound.rb-STAMP: $(srcdir)/ecasound.rb
|
|
||||||
if test ! -e ecasound.rb ; then $(LN_S) $(srcdir)/ecasound.rb . ; fi
|
|
||||||
touch ecasound.rb-STAMP
|
|
||||||
|
|
||||||
#install-exec-hook: $(rubyecasound_install_list1) $(rubyecasound_install_list2)
|
|
||||||
# $(INSTALL) -d $(DESTDIR)$(ECA_S_RUBY_SITEDIR)
|
|
||||||
# $(INSTALL) $(rubyecasound_install_list1) $(rubyecasound_install_list2) $(DESTDIR)$(ECA_S_RUBY_SITEDIR)/
|
|
||||||
install-exec-hook:
|
|
||||||
|
|
||||||
#uninstall-local:
|
|
||||||
# rm -f $(rubyecasound_uninstall_list1) $(rubyecasound_uninstall_list2)
|
|
||||||
# rmdir $(DESTDIR)$(ECA_S_RUBY_SITEDIR) || echo "Skipping non-empty directory"
|
|
||||||
uninstall-local:
|
|
||||||
|
|
||||||
clean-local:
|
|
||||||
rm -vf ecasound.rb-STAMP
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
||||||
.NOEXPORT:
|
|
|
@ -1 +0,0 @@
|
||||||
timestamp for config.h
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue