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

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2005-01-25 11:06:21 UTC
  • Revision ID: james.westby@ubuntu.com-20050125110621-gob0ha2k25r679i9
Tags: upstream-0.0.1
ImportĀ upstreamĀ versionĀ 0.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
CPPFLAGS += -I. -fPIC -D_REENTRANT -Wall -O3
 
3
 
 
4
 
 
5
all:    filters.so
 
6
 
 
7
 
 
8
filters.so:     filters.o filters_if.o exp2ap.o
 
9
        g++ -shared filters.o filters_if.o exp2ap.o -o filters.so
 
10
 
 
11
filters.o:      ladspaplugin.h filters.h
 
12
filters_if.o:   ladspaplugin.h filters.h
 
13
 
 
14
 
 
15
install:
 
16
        cp  *.so /usr/lib/ladspa
 
17
 
 
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
clean:
 
26
        /bin/rm -f *~ *.o *.so
 
27