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

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-01-09 01:53:21 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100109015321-7fwmuut8vq1e7r33
Tags: 0.3.0-1
* New upstream release.
* Switch to debhelper 7.
* Switch to quilt patch system.
* Refresh and convert all patches to quilt format.
* debian/control:
  - Bump Standards.
  - Set Debian Multimedia Maintainers as Maintainer.
  - Add myself as uploader.
  - Allow uploads by DM.
  - Add Vcs-* tags.
  - Add Homepage field.
  - Build-depend on ladspa-sdk.
* Bump debian/watch version to 3.
* Update debian/copyright.

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
 
1
17
 
2
18
CPPFLAGS += -I. -fPIC -D_REENTRANT -Wall -O3
3
19
 
11
27
filters.o:      ladspaplugin.h filters.h
12
28
filters_if.o:   ladspaplugin.h filters.h
13
29
 
14
 
 
15
 
install:
 
30
install:        all
16
31
        cp  *.so /usr/lib/ladspa
17
32
 
18
 
 
19
 
DIR := $(shell basename `pwd`)
20
 
 
21
 
archive:        clean
22
 
        cd ..; /bin/rm -f $(DIR).tar.bz2; tar cvf $(DIR).tar $(DIR); bzip2 $(DIR).tar
23
 
 
24
 
 
25
33
clean:
26
34
        /bin/rm -f *~ *.o *.so
27
35