home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC15B48.ZIP / MAKEFILE < prev    next >
Text File  |  1997-09-26  |  920b  |  37 lines

  1. #
  2. #  Makefile for PPP Project Files
  3. #
  4.  
  5. # uncomment the next line to enable the SMTP and POP server debug messages
  6. # DEBUG= -DSMTP_POP_DEBUG
  7.  
  8. #41 CFLAGS= -R- -W- -H- -N -K -K2 -f -v- -vi- -dc -Z -2 -k -IC:\bc45\include
  9. #34 CFLAGS= -ml -R- -W- -K -K2 -ff -v- -vi -Z -1 -IC:\bc45\include
  10. #42 CFLAGS= -R- -W- -K -K2 -ff -v- -vi -Ic:\bc45\include -Lc:\bc45\lib
  11.  
  12. CFLAGS= -ml -R- -ff -K -O1 -ff -v- -2 -k- -N -IC:\BC45\INCLUDE -LC:\BC45\LIB
  13.  
  14. CC= bcc $(CFLAGS) $(DEBUG)
  15.  
  16. #  list of executables
  17.  
  18. all: network.exe pop.exe news.exe exp.exe uu.exe pppurge.exe
  19.  
  20. network.exe: network.c version.h
  21.         $(CC) network.c
  22.  
  23. pop.exe: pop.c version.h
  24.         $(CC) pop.c watt.lib
  25.  
  26. news.exe: news.c version.h
  27.         $(CC) news.c watt.lib
  28.  
  29. exp.exe: exp.c version.h
  30.         $(CC) exp.c
  31.  
  32. uu.exe: uu.c uumain.c version.h
  33.         $(CC) uu.c uumain.c
  34.  
  35. pppurge.exe: pppurge.c version.h
  36.         $(CC) pppurge.c
  37.