home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / slipfree.zip / Makefile next >
Makefile  |  1994-11-26  |  467b  |  30 lines

  1. #
  2. # Makefile for SLIPWAIT, Mike Lempriere (mikel@networx.com) 26-Nov-94
  3. #
  4.  
  5. # Use the following 3 lines for IBM CSET++...
  6. CPP=icc
  7. CFLAGS=-q -Wall-cls -W3
  8. LDFLAGS=-q -B"/batch /pm:vio"
  9.  
  10. # Use the following 3 lines for Borland compilers...
  11. # CPP=bcc
  12. # CFLAGS=-wall+
  13. # LDFLAGS=
  14.  
  15.  
  16. .cpp.obj:
  17.     $(CPP) -c $(CFLAGS) -Dos2 $*.cpp
  18.  
  19. .obj.exe:
  20.     $(CPP) $(LDFLAGS) $*.obj
  21.  
  22.  
  23. all:    SlipFree.exe
  24.  
  25. SlipFree.obj: SlipFree.cpp
  26.  
  27.  
  28. clean:
  29.     -del *.exe *.obj *.map
  30.