home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / examples / example_device / smakefile < prev   
Encoding:
Makefile  |  1996-12-24  |  357 b   |  19 lines

  1. SCOPTS = libcode 
  2.  
  3. all: driver example.device
  4.  
  5. driver: driver.c smakefile scoptions
  6.    sc link driver.c
  7.    
  8. example.device: serial.o 
  9.      slink with <<
  10. from lib:devent.o lib:devinitr.o serial.o 
  11. lib lib:sc.lib lib:amiga.lib
  12. to example.device
  13. libfd serial.fd
  14. <
  15.      copy example.device devs:
  16.  
  17. serial.o: serial.c smakefile scoptions
  18.    sc $(SCOPTS) serial.c
  19.