home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ledar34.zip / leda-r-3_4_tar / LEDA-3.4 / confdir / os2 / icc / make.pro next >
Text File  |  1996-09-03  |  727b  |  34 lines

  1. #-----------------------------------------------------------------------------
  2. # OS2 IBM C++  
  3. #-----------------------------------------------------------------------------
  4.  
  5. CFLAGS = -O
  6.  
  7. e=.exe
  8.  
  9.  
  10. .c.obj:
  11.     icc -q -Tdp -I../../incl $(CFLAGS) $(DFLAGS) -c $*.c
  12.  
  13. .obj.exe:
  14.     icc -q -Tdp $(CFLAGS) $*.obj $(DOSLIB)
  15.     if exist leda.res rc leda.res $*.exe
  16.  
  17. .c.exe:
  18.     icc -q -Tdp -I../../incl $(CFLAGS) $(DFLAGS) -c $*.c
  19.     icc -q -Tdp $(CFLAGS) $*.obj $(DOSLIB)
  20.     if exist leda.res rc leda.res $*.exe
  21.  
  22.  
  23. #-----------------------------------------------------------------------------
  24. # Programs
  25. #-----------------------------------------------------------------------------
  26.  
  27. include Make.lst
  28.  
  29. all: $(PROGS)
  30.  
  31. clean:
  32.     rm -f *.o $(PROGS) core
  33.  
  34.