home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC / SRC15B60.ZIP / MAKEFILE < prev    next >
Text File  |  1997-10-27  |  1KB  |  48 lines

  1. #
  2. # Makefile for PPP Project Files
  3. #
  4.  
  5. # Compiler flags
  6. # -ml       : Large memory model
  7. # -K        : Treat all characters as unsigned
  8. # -H-       : Do not generate or use precompiled headers
  9. # -N        : Test for stack overflow
  10. # -f        : Emulate 80x87 floating point
  11. # -v-       : No debug information in OBJ
  12. # -vi-      : No inline expansion
  13. # -Z        : Supress redundant loads during optimization
  14. # -1        : Generate 80186 instructions (real mode)
  15.  
  16. CFLAGS= -ml -K -H- -N- -f -v- -Z -1
  17.  
  18. # Compiler (TCC or BCC)
  19.  
  20. CC= bcc $(CFLAGS)
  21.  
  22. # List of executables
  23.  
  24. all: network.exe pop.exe news.exe ntime.exe exp.exe uu.exe pppurge.exe
  25.  
  26. # How to build each executable
  27.  
  28. network.exe: network.cpp version.h
  29.         $(CC) network.cpp
  30.  
  31. pop.exe: pop.cpp version.h
  32.         $(CC) pop.cpp watt.lib
  33.  
  34. news.exe: news.cpp version.h
  35.         $(CC) news.cpp watt.lib
  36.  
  37. ntime.exe: ntime.cpp version.h
  38.         $(CC) ntime.cpp watt.lib
  39.  
  40. exp.exe: exp.cpp version.h
  41.         $(CC) exp.cpp
  42.  
  43. uu.exe: uu.cpp uumain.cpp version.h
  44.         $(CC) uu.cpp uumain.cpp
  45.  
  46. pppurge.exe: pppurge.cpp version.h
  47.         $(CC) pppurge.cpp
  48.