home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / ACDCR032.ZIP / source / CDRTOOLS / SOURCE / MAKEFILE < prev   
Encoding:
Text File  |  1999-08-22  |  1.2 KB  |  39 lines

  1. #                          Makefile for CDRTools
  2. #
  3. #                     (C) Chris Wohlgenuth 1998-99
  4. #
  5. #          E-mail:    christopher.wohlgemuth@bch.siemens.de
  6. #
  7. #          http://www.geocities.com/SiliconValley/Sector/5785/
  8. #
  9.  
  10. #/*
  11. # * This program is free software; you can redistribute it and/or modify
  12. # * it under the terms of the GNU General Public License as published by
  13. # * the Free Software Foundation; either version 2, or (at your option)
  14. # * any later version.
  15. # *
  16. # * This program is distributed in the hope that it will be useful,
  17. # * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. # * GNU General Public License for more details.
  20. # *
  21. # * You should have received a copy of the GNU General Public License
  22. # * along with this program; see the file COPYING.  If not, write to
  23. # * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  24. # */
  25.  
  26. CC           = icc
  27.  
  28. all:    cdrtools.exe
  29.  
  30. cdrtools.exe:    cdrtools.cpp
  31.         icc -G4 -Gl -Rn /O+ -Oc+ -Ol cdrtools.cpp cdrtools.def
  32.         rc cdrtoolsdialog.rc cdrtools.exe
  33.  
  34.  
  35. clean:
  36.     -del *.obj
  37.     -del *.res
  38.     -del *.exe
  39.