home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC15B17.ZIP / MAKEFILE < prev    next >
Text File  |  1997-03-19  |  556b  |  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 -1 -d -ff -k- -O -r -vi- -Z -IC:\tc\include
  9.  
  10. CC= tcc $(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
  17.         $(CC) network.c
  18.  
  19. pop.exe: pop.c
  20.         $(CC) pop.c watt.lib
  21.  
  22. news.exe: news.c
  23.         $(CC) news.c watt.lib
  24.  
  25. exp.exe: exp.c
  26.         $(CC) exp.c
  27.  
  28. uu.exe: uu.c uumain.c
  29.         $(CC) uu.c uumain.c
  30.