~ubuntu-branches/ubuntu/karmic/mp3val/karmic

« back to all changes in this revision

Viewing changes to Makefile.watcomc

  • Committer: Bazaar Package Importer
  • Author(s): Sandro Tosi
  • Date: 2008-01-23 09:11:35 UTC
  • mfrom: (3.1.3 hardy)
  • Revision ID: james.westby@ubuntu.com-20080123091135-r10vczs51d63e8p0
Tags: 0.1.7-3
* debian/control
  - bump Standards-Version to 3.7.3
  - bump dependency against debhelper to >=5
* debian/compat
  - bump to 5
* debian/dirs
  - removed since not needed
* debian/rules
  - do not ignore anymore clean error due to missing makefile
* debian/copyright
  - clear separation of upstream author, license and copyright
  - link to /usr/share/common-licenses/GPL file
* debian/mp3val.1
  - escaped minus signs (lintian warning)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
mp3val.exe: main.obj mpegparse.obj out.obj report.obj crossapi.obj crc.obj
 
2
        wcl386 -d0 -xd main.obj mpegparse.obj out.obj report.obj crossapi.obj crc.obj user32.lib -fe=mp3val.exe
 
3
main.obj: main.cpp
 
4
        wcl386 -d0 -xd -c main.cpp
 
5
mpegparse.obj: mpegparse.cpp
 
6
        wcl386 -d0 -xd -c mpegparse.cpp
 
7
out.obj: out.cpp
 
8
        wcl386 -d0 -xd -c out.cpp
 
9
report.obj: report.cpp
 
10
        wcl386 -d0 -xd -c report.cpp
 
11
crossapi.obj: crossapi.cpp
 
12
        wcl386 -d0 -xd -c crossapi.cpp
 
13
crc.obj: crc.cpp crc.h
 
14
        wcl386 -d0 -xd -c crc.cpp
 
15
clean:
 
16
        del *.exe
 
17
        del *.obj