root/branches/echoaudio/Makefile.am

Revision 445, 1.6 kB (checked in by pieterpalmers, 17 years ago)

* name change from FreeBoB to FFADO
* replaced tabs by 4 spaces
* got rid of end-of-line spaces
* made all license and copyrights conform

library becomes LGPL, apps become GPL
explicitly state LGPL v2.1 and GPL v2 (don't like v3 draft)

copyrights are 2005-2007 Daniel & Pieter
except for the MotU stuff (C) Jonathan, Pieter

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 # Makefile.am - toplevel Makefile for FFADO
2 #
3 # Copyright (C) 2005-2007 by Daniel Wagner.
4 # Copyright (C) 2005-2007 by Pieter Palmers.
5 #
6 # This file is part of FFADO.
7 # FFADO = Free Firewire (pro-)audio drivers for linux
8 #
9 # FFADO is based upon FreeBoB.
10 #
11 # FFADO is free software.
12 #
13 # you can redistribute and/or modify the library code
14 # under the terms of the GNU Lesser General Public License
15 # version 2.1, as published by the Free Software Foundation
16 #
17 # you can redistribute and/or modify the applications
18 # under the terms of the GNU General Public License
19 # version 2, as published by the Free Software Foundation
20 #
21 # FFADO is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU (Lesser) General Public License for more details.
25 #
26 # You should have received a copy of the GNU (Lesser) General Public License
27 # along with FFADO; if not, write to the Free Software
28 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
29
30 SUBDIRS = libffado src tests doc
31
32 pkgconfigdir = $(libdir)/pkgconfig
33 pkgconfig_DATA = libffado.pc
34
35 $(srcdir)/configure: configure.ac aclocal.m4
36         cd $(srcdir) && autoconf
37
38 # autoheader might not change config.h.in, so touch a stamp file.
39 $(srcdir)/config.h.in: stamp-h.in
40 $(srcdir)/stamp-h.in: configure.ac aclocal.m4
41         cd $(srcdir) && autoheader
42         echo timestamp > $(srcdir)/stamp-h.in
43
44 config.h: stamp-h
45 stamp-h: config.h.in config.status
46         ./config.status
47
48 Makefile: Makefile.am config.status
49         ./config.status
50
51 config.status: configure
52         ./config.status --recheck
Note: See TracBrowser for help on using the browser.