~ubuntu-branches/ubuntu/oneiric/oss4/oneiric-proposed

« back to all changes in this revision

Viewing changes to tutorials/sndkit/dsp/vplay/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Rivera
  • Date: 2011-06-16 20:37:48 UTC
  • mfrom: (5.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110616203748-jbrxik6ql33z54co
Tags: 4.2-build2004-1ubuntu1
* Merge from Debian unstable.
  - Supports our current kernel (LP: #746048)
  Remaining changes:
  - debian/oss4-dkms.dkms.in: s/source/build/ in Kernel headers paths.
* ld-as-needed.patch: Re-order CC arguments to enable building with ld
  --as-needed (LP: #770972)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#CC=gcc
 
2
#CFLAGS=-O6 -funroll-loops -Wall
 
3
CC=cc
 
4
CFLAGS=-O -Wall
 
5
 
 
6
all:            vplay vrec
 
7
 
 
8
vplay:          vplay.c fmtheaders.h
 
9
                $(CC) $(CFLAGS) vplay.c -o vplay
 
10
                strip vplay
 
11
 
 
12
vrec:           vplay
 
13
                ln -s vplay vrec
 
14
clean:
 
15
                rm -f vplay vrec *.o core
 
16
 
 
17
install:        vplay
 
18
                cp vplay /usr/local/bin
 
19
                rm -f /usr/local/bin/vrec
 
20
                ln -s /usr/local/bin/vplay /usr/local/bin/vrec