~ubuntu-branches/ubuntu/trusty/mp3val/trusty-proposed

« back to all changes in this revision

Viewing changes to Makefile.gcc

  • Committer: Bazaar Package Importer
  • Author(s): Sandro Tosi
  • Date: 2006-05-13 17:00:49 UTC
  • Revision ID: james.westby@ubuntu.com-20060513170049-kvvq15cjwci4pjhf
Tags: upstream-0.1.4
ImportĀ upstreamĀ versionĀ 0.1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
mp3val.exe: main.o mpegparse.o out.o report.o crossapi.o
 
2
        g++ -Wall main.o mpegparse.o out.o report.o crossapi.o -o mp3val.exe
 
3
        strip mp3val.exe
 
4
main.o: main.cpp
 
5
        g++ -Wall -c main.cpp
 
6
mpegparse.o: mpegparse.cpp
 
7
        g++ -Wall -c mpegparse.cpp
 
8
out.o: out.cpp
 
9
        g++ -Wall -c out.cpp
 
10
report.o: report.cpp
 
11
        g++ -Wall -c report.cpp
 
12
crossapi.o: crossapi.cpp
 
13
        g++ -Wall -c crossapi.cpp
 
14
clean:
 
15
        rm *.o
 
16
        rm *.exe