home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 648c.lha / SCSIutil / lmkfile next >
Text File  |  1992-05-21  |  960b  |  38 lines

  1. ######################################################################
  2. #
  3. # lmkfile to build SCSIutil
  4. #
  5. #   Gary Duncan -  13 May 92
  6. #
  7. #  Lattice 5.10    
  8. #
  9. ######################################################################
  10.  
  11. CFLAGS  = -dLATTICE -v -d3 -cs -cu -b0
  12.  
  13. # -ms = short code optimize     -v  = no stack overflow check
  14. # -d0 = no debug info           -cu = unsigned chars by default
  15. # -d3 = full debug info         -b0 = 32 bit addressing for statics etc
  16. # -cs = one copy per string     -m3 = code for 68030
  17. # -H  = read precompiled header -ph = write precompiled header
  18. # -rr = register arguments       ND = strip debug information
  19.  
  20. ###ADDSYM = ADDSYM
  21. ADDSYM =
  22.  
  23. O=O/
  24. LIBS= lib:lc.lib lib:amiga.lib
  25. INCS= scsi_priv.h
  26.  
  27. all :    SCSIutil
  28.  
  29. SCSIutil    : $(O)SCSIutil.o
  30.     blink   FROM lib:c.o  $(O)SCSIutil.o  TO SCSIutil LIB \
  31.         $(LIBS) $(ADDSYM) NOICONS
  32.  
  33. $(O)SCSIutil.o   : SCSIutil.c $(INCS) 
  34.     lc    -o$(O) $(CFLAGS) SCSIutil
  35.  
  36. indent:    
  37.     indent -gnu SCSIutil.c
  38.