home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / cdrom / scsidevs / smakefile < prev    next >
Makefile  |  1981-07-07  |  623b  |  43 lines

  1.  
  2. #   SMakefile for SCSIdevs 
  3. #
  4. #
  5. # debug stuff ; enable SF
  6. #
  7. ##SF=debug=sf nover
  8. SF= nover
  9.  
  10. PROTOS=Proto
  11.  
  12. O=O/
  13.  
  14. SO=ObjectName=$(O) noIcons
  15.  
  16. OBJS    = $(O)SCSIdevs.o
  17.  
  18. clean:
  19.     Delete $(PROTOS)/\#?.h  >nil: \
  20.     Delete  $(OBJS) >nil: \
  21.     Delete  SCSIdevs
  22.  
  23. all:    indent protos SCSIdevs
  24.  
  25.  
  26. SCSIdevs : $(O)SCSIdevs.o
  27.     slink  FROM lib:c.o $(O)SCSIdevs.o  TO SCSIdevs LIB \
  28.      lib:sc.lib  lib:amiga.lib noIcons   quiet
  29.  
  30.  
  31. $(O)SCSIdevs.o   : SCSIdevs.c 
  32.     sc $(SF)  $(SO) SCSIdevs
  33.  
  34.  
  35. protos:
  36.     sc nover genprotos GenProtoFile=$(PROTOS)/SCSIdevs_protos.h \
  37.          SCSIdevs.c
  38.         @Delete $(PROTOS)/\#?.info >nil:
  39.  
  40. indent:
  41.     indent -gnu SCSIdevs.c
  42.  
  43.