home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSFRONT / UUCP-RA.ZIP / M-UUCP next >
Encoding:
Text File  |  1992-12-10  |  1005 b   |  39 lines

  1. # This file creates the UUCP-RA.EXE program.
  2. # Copyright (c) 1992 Fredric L. Rice
  3. #
  4. # The MODEL variable is used to describe
  5. # the memory model to use.
  6. #
  7. # Compiler SWITCHES:
  8. #    -G     Generate for speed rather than size
  9. #    -O     Optimizes jumps
  10. #    -d     Merge duplicate strings
  11. #    -Z     This would optimize registers
  12. #    -K        Default char is considered unsigned
  13. #    -g1        Stop after first warning
  14. #    -j1    Stop after first error
  15. #    -v         Symbol table
  16. #    -y         Line number
  17. #    -w         Enable all warnings
  18. #    -S         Produce assembly output
  19.  
  20. MODEL = l
  21.  
  22. SWITCHES1 = -Ic:\tc\include -G -O -d -Z -K -g1 -j1
  23.  
  24. # Describe the files that are used to
  25. # create the executable module.
  26.  
  27. uucp-ra.exe : uucp-ra.obj
  28.  
  29. # Here is the command to execute if
  30. # uucp-ra.exe needs to be linked.
  31.  
  32.      tlink /x /i @uucp-ra.res
  33.  
  34. # The following are the commands that create the object module
  35.  
  36. uucp-ra.obj : uucp-ra.c
  37.      tcc -c $(SWITCHES1) -m$(MODEL) uucp-ra.c
  38.  
  39.