home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC15B24.ZIP / MAKEFILE < prev    next >
Text File  |  1997-04-04  |  608b  |  30 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. CFLAGS= -ml -R- -W- -K -K2 -k -v- -vi -Z -IC:\bc45\include
  9.  
  10. CC= bcc $(CFLAGS) $(DEBUG)
  11.  
  12. #  list of executables
  13.  
  14. all: network.exe pop.exe news.exe exp.exe uu.exe
  15.  
  16. network.exe: network.c version.h
  17.         $(CC) network.c
  18.  
  19. pop.exe: pop.c version.h
  20.         $(CC) pop.c watt.lib
  21.  
  22. news.exe: news.c version.h
  23.         $(CC) news.c watt.lib
  24.  
  25. exp.exe: exp.c version.h
  26.         $(CC) exp.c
  27.  
  28. uu.exe: uu.c uumain.c version.h
  29.         $(CC) uu.c uumain.c
  30.