~ubuntu-branches/ubuntu/wily/fil-plugins/wily-proposed

« back to all changes in this revision

Viewing changes to .pc/01-destdir.patch/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2011-06-03 10:31:47 UTC
  • Revision ID: james.westby@ubuntu.com-20110603103147-ncyyeyr0cqt2pe3y
Tags: 0.3.0-2
* Team upload.
* Switch to format 3.0 (quilt).
* Small corrections to debian/watch file.
* Add git-buildpackage config file.
* Add "Provides: ladspa-plugin" field, as per
  http://wiki.debian.org/DebianMultimedia/Policy
* Remove myself from the Uploaders field.
* Fix gbp.conf file.
* Bump Standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#    Copyright (C) 2004-2009 Fons Adriaensen <fons@kokkinizita.net>
 
2
#    
 
3
#    This program is free software; you can redistribute it and/or modify
 
4
#    it under the terms of the GNU General Public License as published by
 
5
#    the Free Software Foundation; either version 2 of the License, or
 
6
#    (at your option) any later version.
 
7
#
 
8
#    This program is distributed in the hope that it will be useful,
 
9
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
#    GNU General Public License for more details.
 
12
#
 
13
#    You should have received a copy of the GNU General Public License
 
14
#    along with this program; if not, write to the Free Software
 
15
#    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
16
 
 
17
 
 
18
CPPFLAGS += -I. -fPIC -D_REENTRANT -Wall -O3
 
19
 
 
20
 
 
21
all:    filters.so
 
22
 
 
23
 
 
24
filters.so:     filters.o filters_if.o exp2ap.o
 
25
        g++ -shared filters.o filters_if.o exp2ap.o -o filters.so
 
26
 
 
27
filters.o:      ladspaplugin.h filters.h
 
28
filters_if.o:   ladspaplugin.h filters.h
 
29
 
 
30
install:        all
 
31
        cp  *.so /usr/lib/ladspa
 
32
 
 
33
clean:
 
34
        /bin/rm -f *~ *.o *.so
 
35