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

  1. all: test libs:mylib.library
  2.  
  3. test: test.c
  4.    sc link test.c
  5.  
  6. mylib.o: mylib.c
  7.    sc libcode nostackcheck profile mylib.c
  8.  
  9. libs:mylib.library: mylib.o
  10.    sc link mylib.o startup=libinitr noicons to mylib.library 
  11.    slink from mylib.library to libs:mylib.library nodebug noicons
  12.